/* =========================================================
   MixHub shared tool interface
   Visual layer only — no processing logic
   ========================================================= */

.mh-tool-page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.mh-tool-hero {
    position: relative;
    margin-bottom: 22px;
    padding: 8px 2px;
}

.mh-tool-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: rgba(194,164,255,.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mh-tool-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(31px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.mh-tool-hero h1 span {
    color: #b991ff;
}

.mh-tool-hero p {
    max-width: 700px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.7;
}

.mh-tool-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.07),
        0 25px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.mh-tool-panel::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(129,81,230,.12);
    filter: blur(45px);
    pointer-events: none;
}

.mh-tool-panel > * {
    position: relative;
    z-index: 1;
}

.mh-tool-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
}

.mh-tool-section-head h2 {
    margin: 0;
    color: #fff;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(21px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: -.025em;
}

.mh-tool-section-head p {
    margin: 7px 0 0;
    color: rgba(255,255,255,.5);
    font-size: 13px;
}

.mh-tool-icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    background: rgba(255,255,255,.06);
    color: #c7a9ff;
    font-size: 20px;
}

.mh-field {
    margin-bottom: 18px;
}

.mh-field label,
.mh-field-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.mh-tool-input,
.mh-tool-select,
.mh-tool-panel .form-control,
.mh-tool-panel .form-select {
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.105) !important;
    border-radius: 14px !important;
    background: rgba(5,6,12,.48) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
    transition:
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.mh-tool-input:focus,
.mh-tool-select:focus,
.mh-tool-panel .form-control:focus,
.mh-tool-panel .form-select:focus {
    border-color: rgba(185,145,255,.58) !important;
    background: rgba(8,9,17,.72) !important;
    box-shadow:
        0 0 0 4px rgba(129,81,230,.13) !important;
}

.mh-tool-panel .form-control::placeholder {
    color: rgba(255,255,255,.28);
}

.mh-segmented {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 17px;
    background: rgba(255,255,255,.035);
}

.mh-segmented-option {
    position: relative;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.mh-segmented-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mh-segmented-option span {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(255,255,255,.48);
    font-size: 13px;
    font-weight: 750;
    transition:
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.mh-segmented-option input:checked + span {
    border: 1px solid rgba(255,255,255,.14);
    background:
        linear-gradient(
            135deg,
            rgba(179,121,255,.25),
            rgba(255,255,255,.07)
        );
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 7px 20px rgba(0,0,0,.2);
}

.mh-tool-primary,
.mh-tool-panel .btn-primary {
    min-height: 51px;
    border: 1px solid rgba(255,255,255,.13) !important;
    border-radius: 14px !important;
    background:
        linear-gradient(
            135deg,
            #8f5ff0,
            #6f42d5
        ) !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 12px 28px rgba(86,45,170,.3);
    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.mh-tool-primary:hover,
.mh-tool-panel .btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 16px 34px rgba(86,45,170,.38);
}

.mh-tool-primary:disabled,
.mh-tool-panel .btn-primary:disabled {
    transform: none;
    filter: none;
    opacity: .46;
    box-shadow: none;
}

.mh-tool-secondary {
    min-height: 47px;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,.055) !important;
    color: rgba(255,255,255,.82) !important;
}

.mh-tool-processing,
.mh-tool-result {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 17px;
    background: rgba(255,255,255,.035);
}

.mh-tool-spinner {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 13px;
    place-items: center;
    border-radius: 50%;
    background: rgba(179,121,255,.1);
}

.mh-tool-status {
    margin-bottom: 16px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.mh-tool-status.is-error,
.mh-tool-panel .alert-danger {
    border-color: rgba(255,102,126,.22) !important;
    background: rgba(255,73,104,.09) !important;
    color: #ffbcc8 !important;
}

.mh-tool-status.is-success,
.mh-tool-panel .alert-success {
    border-color: rgba(96,220,165,.2) !important;
    background: rgba(65,190,135,.09) !important;
    color: #baf4d8 !important;
}

@media (max-width: 700px) {
    .mh-tool-page {
        width: min(100% - 22px, 1120px);
        padding-top: 24px;
    }

    .mh-tool-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .mh-tool-section-head {
        align-items: flex-start;
    }

    .mh-tool-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }
}

/* =========================================================
   Audio analysis and file converter
   ========================================================= */

.mh-analysis-page,
.mh-converter-page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.mh-analysis-page > .container,
.mh-converter-page > .container,
.mh-analysis-page.container,
.mh-converter-page.container {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.mh-analysis-panel,
.mh-converter-panel {
    position: relative;
    overflow: hidden;
    width: min(100%, 860px);
    margin: 0 auto;
    padding: clamp(20px, 4vw, 34px) !important;
    border: 1px solid rgba(255,255,255,.105) !important;
    border-radius: 25px !important;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        ) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.07),
        0 25px 70px rgba(0,0,0,.24) !important;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.mh-analysis-panel::before,
.mh-converter-panel::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -150px;
    right: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(129,81,230,.13);
    filter: blur(48px);
    pointer-events: none;
}

.mh-analysis-panel > *,
.mh-converter-panel > * {
    position: relative;
    z-index: 1;
}

.mh-inline-tool-hero {
    margin-bottom: 28px;
}

.mh-inline-tool-hero .mh-tool-eyebrow {
    margin-bottom: 11px;
}

.mh-inline-tool-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.mh-inline-tool-hero h1 span {
    color: #b991ff;
}

.mh-inline-tool-hero p {
    max-width: 680px;
    margin: 13px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 14px;
    line-height: 1.65;
}

/* Form controls */

.mh-analysis-panel label,
.mh-converter-panel label {
    margin-bottom: 8px;
    color: rgba(255,255,255,.73);
    font-size: 12px;
    font-weight: 700;
}

.mh-analysis-panel .form-control,
.mh-analysis-panel .form-select,
.mh-converter-panel .form-control,
.mh-converter-panel .form-select {
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.105) !important;
    border-radius: 14px !important;
    background: rgba(5,6,12,.48) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.mh-analysis-panel .form-control:focus,
.mh-analysis-panel .form-select:focus,
.mh-converter-panel .form-control:focus,
.mh-converter-panel .form-select:focus {
    border-color: rgba(185,145,255,.58) !important;
    background: rgba(8,9,17,.72) !important;
    box-shadow:
        0 0 0 4px rgba(129,81,230,.13) !important;
}

.mh-analysis-panel input[type="file"]::file-selector-button,
.mh-converter-panel input[type="file"]::file-selector-button {
    margin: -12px 14px -12px -15px;
    padding: 14px 17px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.85);
    font-weight: 700;
    cursor: pointer;
}

/* Buttons */

.mh-analysis-panel .btn,
.mh-converter-panel .btn {
    border-radius: 13px;
    font-weight: 750;
}

.mh-analysis-panel .btn-primary,
.mh-converter-panel .btn-primary,
.mh-analysis-panel button[type="submit"],
.mh-converter-panel button[type="submit"] {
    min-height: 50px;
    border: 1px solid rgba(255,255,255,.13) !important;
    background:
        linear-gradient(
            135deg,
            #8f5ff0,
            #6f42d5
        ) !important;
    color: #fff !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 12px 28px rgba(86,45,170,.3);
}

.mh-analysis-panel .btn-primary:hover,
.mh-converter-panel .btn-primary:hover,
.mh-analysis-panel button[type="submit"]:hover,
.mh-converter-panel button[type="submit"]:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

/* Result cards, tables and alerts */

.mh-analysis-panel .card,
.mh-converter-panel .card,
.mh-analysis-panel .result,
.mh-converter-panel .result,
.mh-analysis-panel [id*="result"],
.mh-converter-panel [id*="result"] {
    border-color: rgba(255,255,255,.09) !important;
    border-radius: 17px !important;
    background: rgba(255,255,255,.035) !important;
    color: rgba(255,255,255,.88);
}

.mh-analysis-panel .alert,
.mh-converter-panel .alert {
    border-radius: 14px;
}

.mh-analysis-panel table,
.mh-converter-panel table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255,255,255,.8);
    --bs-table-border-color: rgba(255,255,255,.08);
}

.mh-analysis-panel .progress,
.mh-converter-panel .progress {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
}

.mh-analysis-panel .progress-bar,
.mh-converter-panel .progress-bar {
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #8151e6,
            #ba8cff
        );
}

/* Radio and checkbox controls */

.mh-analysis-panel .form-check-input,
.mh-converter-panel .form-check-input {
    border-color: rgba(255,255,255,.2);
    background-color: rgba(5,6,12,.55);
}

.mh-analysis-panel .form-check-input:checked,
.mh-converter-panel .form-check-input:checked {
    border-color: #9565ed;
    background-color: #8151e6;
}

/* Dropzone-like file areas */

.mh-analysis-panel .drop-zone,
.mh-analysis-panel .dropzone,
.mh-analysis-panel [class*="upload-area"],
.mh-converter-panel .drop-zone,
.mh-converter-panel .dropzone,
.mh-converter-panel [class*="upload-area"] {
    border: 1px dashed rgba(185,145,255,.34) !important;
    border-radius: 18px !important;
    background: rgba(129,81,230,.055) !important;
}

/* Spinner */

.mh-analysis-panel .spinner-border,
.mh-converter-panel .spinner-border {
    color: #b991ff !important;
}

@media (max-width: 700px) {
    .mh-analysis-page,
    .mh-converter-page {
        width: min(100% - 22px, 1120px);
        padding-top: 24px;
    }

    .mh-analysis-panel,
    .mh-converter-panel {
        padding: 18px !important;
        border-radius: 20px !important;
    }
}

/* =========================================================
   Shared premium file picker
   ========================================================= */

.mh-file-picker {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.mh-file-picker > input[type="file"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mh-file-picker-surface {
    position: relative;
    display: flex;
    min-height: 155px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px;
    overflow: hidden;
    border: 1px dashed rgba(185,145,255,.38);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(129,81,230,.085),
            rgba(255,255,255,.025)
        );
    text-align: left;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055);
    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.mh-file-picker-surface::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -45px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(157,106,255,.12);
    filter: blur(34px);
    pointer-events: none;
}

.mh-file-picker:hover .mh-file-picker-surface,
.mh-file-picker.is-dragging .mh-file-picker-surface {
    border-color: rgba(194,164,255,.72);
    background:
        linear-gradient(
            145deg,
            rgba(129,81,230,.14),
            rgba(255,255,255,.04)
        );
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 15px 34px rgba(0,0,0,.18);
}

.mh-file-picker-icon {
    position: relative;
    display: grid;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            rgba(185,145,255,.2),
            rgba(255,255,255,.055)
        );
    color: #c7a9ff;
    font-size: 23px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.1);
}

.mh-file-picker-copy {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mh-file-picker-copy strong {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.mh-file-picker-copy small {
    margin-top: 5px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    line-height: 1.5;
}

.mh-file-picker-name {
    display: block;
    max-width: 100%;
    margin-top: 9px;
    overflow: hidden;
    color: #cbb2ff;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-file-picker-action {
    position: relative;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.mh-file-picker.has-file .mh-file-picker-icon {
    color: #baf4d8;
    background: rgba(65,190,135,.1);
}

.mh-file-picker.has-file .mh-file-picker-surface {
    border-color: rgba(96,220,165,.28);
}

@media (max-width: 620px) {
    .mh-file-picker-surface {
        min-height: 175px;
        flex-direction: column;
        gap: 12px;
        padding: 22px 16px;
        text-align: center;
    }

    .mh-file-picker-copy {
        align-items: center;
    }

    .mh-file-picker-action {
        margin-left: 0;
    }

    .mh-file-picker-name {
        max-width: 260px;
    }
}

/* =========================================================
   MixHub static, legal and contact pages
   ========================================================= */

.mh-static-page {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 70px;
}

.mh-static-hero {
    margin-bottom: 23px;
    padding: 6px 2px;
}

.mh-static-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(31px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.mh-static-hero h1 span {
    color: #b991ff;
}

.mh-static-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.54);
    font-size: 14px;
    line-height: 1.7;
}

.mh-static-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(21px, 4vw, 38px);
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.073),
            rgba(255,255,255,.023)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.07),
        0 25px 70px rgba(0,0,0,.23);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.mh-static-panel::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -130px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(129,81,230,.12);
    filter: blur(55px);
    pointer-events: none;
}

.mh-static-content {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.78;
}

.mh-static-content h2,
.mh-static-content h3,
.mh-static-content h4 {
    color: #fff;
    font-family: Manrope, Inter, sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
}

.mh-static-content h2 {
    margin: 35px 0 13px;
    font-size: 23px;
}

.mh-static-content h2:first-child {
    margin-top: 0;
}

.mh-static-content h3 {
    margin: 26px 0 10px;
    font-size: 18px;
}

.mh-static-content p {
    margin: 0 0 15px;
}

.mh-static-content ul,
.mh-static-content ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.mh-static-content li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.mh-static-content strong {
    color: rgba(255,255,255,.93);
}

.mh-static-content a {
    color: #c2a4ff;
    text-decoration: none;
}

.mh-static-content a:hover {
    color: #dbcaff;
    text-decoration: underline;
}

.mh-static-note {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    padding: 16px 17px;
    border: 1px solid rgba(185,145,255,.17);
    border-radius: 15px;
    background: rgba(129,81,230,.065);
}

.mh-static-note > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #b991ff;
}

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

.mh-static-card {
    padding: 19px;
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 17px;
    background: rgba(255,255,255,.032);
}

.mh-static-card i {
    display: grid;
    width: 40px;
    height: 40px;
    margin-bottom: 13px;
    place-items: center;
    border-radius: 12px;
    background: rgba(185,145,255,.1);
    color: #c5a9ff;
    font-size: 17px;
}

.mh-static-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.mh-static-card p {
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: 13px;
}

/* Contact page */

.mh-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 20px;
}

.mh-contact-info,
.mh-contact-form-panel {
    position: relative;
    padding: clamp(20px, 3vw, 29px);
    border: 1px solid rgba(255,255,255,.095);
    border-radius: 22px;
    background: rgba(255,255,255,.035);
}

.mh-contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.mh-contact-email i {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: rgba(185,145,255,.1);
    color: #c2a4ff;
}

.mh-contact-email span {
    min-width: 0;
}

.mh-contact-email small {
    display: block;
    color: rgba(255,255,255,.42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mh-contact-email a {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-contact-form {
    display: grid;
    gap: 16px;
}

.mh-contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mh-contact-field label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 700;
}

.mh-contact-field input,
.mh-contact-field select,
.mh-contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 14px;
    background: rgba(5,6,12,.5);
    color: #fff;
    outline: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.mh-contact-field input,
.mh-contact-field select {
    min-height: 50px;
    padding: 11px 14px;
}

.mh-contact-field textarea {
    min-height: 165px;
    padding: 13px 14px;
    resize: vertical;
}

.mh-contact-field input:focus,
.mh-contact-field select:focus,
.mh-contact-field textarea:focus {
    border-color: rgba(185,145,255,.6);
    box-shadow: 0 0 0 4px rgba(129,81,230,.13);
}

.mh-contact-field input::placeholder,
.mh-contact-field textarea::placeholder {
    color: rgba(255,255,255,.25);
}

.mh-contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 13px;
}

.mh-contact-alert.success {
    border: 1px solid rgba(96,220,165,.2);
    background: rgba(65,190,135,.09);
    color: #baf4d8;
}

.mh-contact-alert.error {
    border: 1px solid rgba(255,102,126,.22);
    background: rgba(255,73,104,.09);
    color: #ffbdc9;
}

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

@media (max-width: 760px) {
    .mh-static-page {
        width: min(100% - 22px, 1040px);
        padding-top: 25px;
    }

    .mh-static-panel {
        padding: 19px;
        border-radius: 20px;
    }

    .mh-static-grid,
    .mh-contact-layout,
    .mh-contact-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Final professional rules and bans pages
   ========================================================= */

.mh-static-content {
    max-width: 850px;
    margin: 0 auto;
}

.mh-page-intro {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 27px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.075);
}

.mh-page-intro-icon {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(185,145,255,.18);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(185,145,255,.18),
            rgba(255,255,255,.045)
        );
    color: #c7a9ff;
    font-size: 21px;
}

.mh-page-intro-icon.danger {
    border-color: rgba(255,99,126,.18);
    background:
        linear-gradient(
            135deg,
            rgba(255,77,110,.13),
            rgba(255,255,255,.035)
        );
    color: #ff9bae;
}

.mh-page-intro h2 {
    margin: 1px 0 7px;
    padding: 0;
    font-size: 22px;
}

.mh-page-intro h2::after {
    display: none;
}

.mh-page-intro p {
    margin: 0;
    color: rgba(255,255,255,.53);
    line-height: 1.65;
}

.mh-rule-list {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    counter-reset: none !important;
}

.mh-rule-list > li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    margin: 0 !important;
    padding: 19px !important;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.015)
        );
    transition:
        border-color .18s ease,
        transform .18s ease,
        background .18s ease;
}

.mh-rule-list > li:hover {
    transform: translateY(-1px);
    border-color: rgba(185,145,255,.2);
    background:
        linear-gradient(
            145deg,
            rgba(129,81,230,.07),
            rgba(255,255,255,.02)
        );
}

.mh-rule-list > li::before {
    display: none !important;
}

.mh-rule-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(185,145,255,.14);
    border-radius: 13px;
    background: rgba(129,81,230,.09);
    color: #c8adff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.mh-rule-body h3 {
    margin: 1px 0 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.mh-rule-body p {
    margin: 0 0 8px;
    color: rgba(255,255,255,.57);
    font-size: 13px;
    line-height: 1.65;
}

.mh-rule-body p:last-child {
    margin-bottom: 0;
}

.mh-inline-example {
    display: inline-flex;
    margin-top: 4px;
    padding: 8px 11px;
    border: 1px solid rgba(185,145,255,.13);
    border-radius: 10px;
    background: rgba(129,81,230,.065);
    color: #cbb6f6;
    font-size: 12px;
    font-weight: 650;
}

.mh-warning-banner {
    display: flex;
    gap: 13px;
    margin-bottom: 19px;
    padding: 16px 17px;
    border: 1px solid rgba(255,101,127,.17);
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            rgba(255,68,101,.09),
            rgba(255,255,255,.02)
        );
}

.mh-warning-banner > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #ff8ea2;
}

.mh-warning-banner strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 13px;
}

.mh-warning-banner p {
    margin: 0;
    color: rgba(255,255,255,.54);
    font-size: 12px;
    line-height: 1.55;
}

.mh-bans-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.mh-bans-summary > div {
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.027);
}

.mh-bans-summary span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mh-bans-summary strong {
    color: #fff;
    font-size: 15px;
}

.mh-table-shell {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 17px;
    background: rgba(3,4,9,.2);
}

.mh-professional-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.mh-professional-table thead {
    background: rgba(255,255,255,.035);
}

.mh-professional-table th {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255,255,255,.075);
    color: rgba(255,255,255,.43);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.mh-professional-table td {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255,255,255,.055);
    color: rgba(255,255,255,.62);
    font-size: 12px;
    vertical-align: middle;
}

.mh-professional-table tbody tr:last-child td {
    border-bottom: 0;
}

.mh-professional-table tbody tr {
    transition: background .16s ease;
}

.mh-professional-table tbody tr:hover {
    background: rgba(255,255,255,.025);
}

.mh-artist-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
}

.mh-artist-avatar {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(185,145,255,.13);
    border-radius: 11px;
    background: rgba(129,81,230,.08);
    color: #c7abff;
    font-size: 12px;
    font-weight: 800;
}

.mh-artist-cell strong {
    color: rgba(255,255,255,.88);
    font-size: 12px;
}

.mh-ban-type,
.mh-ban-duration {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 9px;
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.68);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.mh-ban-reason {
    min-width: 220px;
    line-height: 1.5;
}

.mh-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 25px;
    color: rgba(255,255,255,.45);
}

.mh-empty-state i {
    color: #72dbaa;
}

@media (max-width: 680px) {
    .mh-page-intro {
        gap: 13px;
    }

    .mh-page-intro-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .mh-rule-list > li {
        grid-template-columns: 1fr;
        gap: 11px;
        padding: 16px !important;
    }

    .mh-rule-number {
        width: 37px;
        height: 32px;
    }

    .mh-bans-summary {
        grid-template-columns: 1fr;
    }
}
