:root {

    --background: #171512;
    --background-deep: #100f0d;

    --rack: #24211d;
    --rack-light: #2d2924;
    --rack-dark: #1c1a17;

    --text: #f3ede3;

    --muted: #c5bbad;
    --muted-dark: #a79d90;

    --line: #4a443b;

    --amber: #d6a64a;
    --amber-bright: #f0c66d;
    --amber-dark: #8e682a;

    --green: #9fbd87;
    --green-dark: #667a56;

    --red: #d36d5b;

    --tool-width: 760px;

}


* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    background:

        radial-gradient(

            circle at 50% -20%,

            #2b2721 0%,

            var(--background) 38%,

            var(--background-deep) 100%

        );

    color: var(--text);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    -webkit-font-smoothing:
        antialiased;

}


body.modal-open {

    overflow: hidden;

}


button,
input {

    font: inherit;

}


button {

    cursor: pointer;

}


a {

    color: inherit;

    text-decoration: none;

}


.hidden {

    display: none !important;

}


/* =========================================================
   PAGE
========================================================= */

.page-shell {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

}


/* =========================================================
   HEADER
========================================================= */

.topbar {

    width:

        min(

            calc(100% - 44px),

            1180px

        );

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-bottom:

        1px solid

        rgba(255, 255, 255, 0.06);

}


.brand {

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: 28px;

    font-weight: 700;

    letter-spacing: -0.9px;

}


/* =========================================================
   MAIN
========================================================= */

.main {

    width:

        min(

            calc(100% - 44px),

            1180px

        );

    margin: auto;

    padding:

        44px

        0

        34px;

}


/* =========================================================
   INTRO
========================================================= */

.intro {

    width: 100%;

    max-width: var(--tool-width);

    margin:

        0

        auto

        26px;

    text-align: center;

}


.eyebrow,
.technical-label {

    color: var(--amber-bright);

    font-family:

        "Courier New",

        monospace;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    line-height: 1.4;

}


.intro h1 {

    margin-top: 11px;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size:

        clamp(

            35px,

            5vw,

            48px

        );

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1.8px;

}


.intro-copy {

    max-width: 540px;

    margin:

        13px

        auto

        0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   TOOL + ADS
========================================================= */

.tool-ad-layout {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: flex-start;

}


.tool-column {

    width: 100%;

    max-width: var(--tool-width);

    min-width: 0;

}


/* =========================================================
   AD POSITIONS
========================================================= */

.ad-rail,
.below-tool-ad {

    display: none;

}


/* =========================================================
   FUTURE DESKTOP AD LAYOUT
========================================================= */

body.ads-enabled .tool-ad-layout {

    display: grid;

    grid-template-columns:

        160px

        minmax(0, var(--tool-width))

        160px;

    justify-content: center;

    align-items: start;

    gap: 24px;

}


body.ads-enabled .tool-column {

    width: 100%;

    max-width: var(--tool-width);

}


body.ads-enabled .ad-rail {

    display: block;

    position: sticky;

    top: 24px;

    width: 100%;

    min-height: 600px;

}


body.ads-enabled .below-tool-ad {

    display: block;

    width: 100%;

    min-height: 100px;

    margin-top: 22px;

}


body.ads-enabled .ad-unit-side {

    width: 100%;

    min-height: 600px;

}


body.ads-enabled .ad-unit-horizontal {

    width: 100%;

    min-height: 100px;

}


/* =========================================================
   RACK
========================================================= */

.rack {

    position: relative;

    width: 100%;

    padding: 26px;

    border:

        1px solid

        #4c463d;

    border-radius: 8px;

    background:

        linear-gradient(

            145deg,

            var(--rack-light),

            var(--rack-dark)

        );

    box-shadow:

        inset

        0

        1px

        rgba(255, 255, 255, 0.04),

        inset

        0

        -1px

        rgba(0, 0, 0, 0.7),

        0

        25px

        70px

        rgba(0, 0, 0, 0.35);

}


/* =========================================================
   SCREWS
========================================================= */

.screw {

    position: absolute;

    width: 9px;

    height: 9px;

    border:

        1px solid

        #5f574c;

    border-radius: 50%;

    background:

        radial-gradient(

            circle,

            #3f3a33,

            #201e1a

        );

    box-shadow:

        inset

        0

        0

        2px

        #000;

}


.screw::after {

    content: "";

    position: absolute;

    left: 2px;

    right: 2px;

    top: 3px;

    height: 1px;

    background: #6e6558;

    transform:
        rotate(-18deg);

}


.screw-top-left {

    top: 10px;

    left: 10px;

}


.screw-top-right {

    top: 10px;

    right: 10px;

}


.screw-bottom-left {

    bottom: 10px;

    left: 10px;

}


.screw-bottom-right {

    bottom: 10px;

    right: 10px;

}


/* =========================================================
   RACK HEADER
========================================================= */

.rack-header {

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.rack-header strong {

    display: block;

    margin-top: 4px;

    font-family:

        "Courier New",

        monospace;

    font-size: 14px;

    letter-spacing: 0.8px;

}


.power-indicator {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

}


.power-light,
.processing-light {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        var(--amber-bright);

    box-shadow:

        0

        0

        8px

        rgba(240, 198, 109, 0.65);

}


/* =========================================================
   METER
========================================================= */

.meter {

    margin-top: 20px;

    padding:

        17px

        18px;

    border:

        1px solid

        #39342d;

    border-radius: 4px;

    background:
        #151411;

    box-shadow:

        inset

        0

        4px

        18px

        rgba(0, 0, 0, 0.45);

}


.meter-scale {

    display: flex;

    justify-content: space-between;

    color: var(--muted-dark);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 9px;

    font-weight: 600;

}


.meter-track {

    position: relative;

    height: 26px;

    margin:

        7px

        0;

    overflow: hidden;

    border-radius: 2px;

    background:

        repeating-linear-gradient(

            to right,

            #2a2722 0,

            #2a2722 4px,

            #151411 4px,

            #151411 7px

        );

}


.meter-fill {

    width: 18%;

    height: 100%;

    background:

        linear-gradient(

            to right,

            rgba(142, 104, 42, 0.6),

            rgba(214, 166, 74, 0.85)

        );

    transition:

        width

        500ms

        ease;

}


.meter-needle {

    position: absolute;

    top: 0;

    left: 18%;

    width: 2px;

    height: 100%;

    background:
        var(--amber-bright);

    box-shadow:

        0

        0

        7px

        rgba(240, 198, 109, 0.8);

    transition:

        left

        500ms

        ease;

}


.meter-footer {

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.8px;

}


/* =========================================================
   UPLOAD
========================================================= */

.upload-area {

    margin-top: 18px;

    min-height: 170px;

    padding: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 22px;

    border:

        1px dashed

        #51493d;

    border-radius: 4px;

    background:

        rgba(0, 0, 0, 0.08);

    outline: none;

    cursor: pointer;

    transition:

        border-color

        160ms

        ease,

        background

        160ms

        ease;

}


.upload-area:hover,
.upload-area.dragging {

    border-color:
        var(--amber);

    background:

        rgba(214, 166, 74, 0.035);

}


.upload-area:focus-visible {

    border-color:
        var(--amber);

    box-shadow:

        0

        0

        0

        2px

        rgba(214, 166, 74, 0.15);

}


.waveform {

    width: 100%;

    max-width: 460px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

}


.waveform span {

    width: 3px;

    border-radius: 2px;

    background:

        linear-gradient(

            to top,

            var(--amber-dark),

            var(--amber-bright)

        );

    opacity: 0.82;

}


.upload-copy {

    text-align: center;

}


.upload-copy strong {

    display: block;

    color: var(--text);

    font-family:

        "Courier New",

        monospace;

    font-size: 13px;

    letter-spacing: 1.3px;

}


.upload-copy span {

    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;

}


.upload-copy .upload-formats {

    margin-top: 10px;

    color: var(--muted-dark);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.4px;

}


/* =========================================================
   SELECTED FILE
========================================================= */

.file-panel {

    min-height: 62px;

    margin-top: 12px;

    padding:

        12px

        15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border:

        1px solid

        #39342d;

    border-radius: 4px;

    background:

        rgba(0, 0, 0, 0.13);

}


.file-panel strong {

    display: block;

    margin-top: 3px;

}


.file-name {

    max-width: 470px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 13px;

}


.file-right {

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--muted);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 10px;

    font-weight: 600;

}


.remove-button {

    border: 0;

    background:
        transparent;

    color: var(--muted);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.7px;

}


.remove-button:hover {

    color: var(--red);

}


/* =========================================================
   ENHANCE BUTTON
========================================================= */

.enhance-button {

    width: 100%;

    min-height: 58px;

    margin-top: 16px;

    padding:

        0

        18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border:

        1px solid

        var(--amber-dark);

    border-radius: 4px;

    background:

        linear-gradient(

            to bottom,

            #c8993f,

            #a97c30

        );

    color: #21190d;

    font-family:

        "Courier New",

        monospace;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:

        inset

        0

        1px

        rgba(255, 255, 255, 0.22),

        0

        2px

        0

        #5c431c;

    transition:

        transform

        120ms

        ease,

        filter

        120ms

        ease;

}


.enhance-button:not(:disabled):hover {

    filter:
        brightness(1.08);

}


.enhance-button:not(:disabled):active {

    transform:
        translateY(2px);

    box-shadow:

        inset

        0

        1px

        rgba(255, 255, 255, 0.14);

}


.enhance-button:disabled {

    border-color:
        #3c3730;

    background:
        #2c2924;

    color:
        #756d62;

    box-shadow: none;

    cursor:
        not-allowed;

}


.enhance-icon {

    font-size: 11px;

}


/* =========================================================
   PANELS
========================================================= */

.status-panel,
.result-panel,
.error-panel {

    margin-top: 12px;

    padding: 15px;

    border:

        1px solid

        #39342d;

    border-radius: 4px;

    background:

        rgba(0, 0, 0, 0.14);

}


/* =========================================================
   PROCESSING
========================================================= */

.status-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.processing-light {

    animation:

        blink

        700ms

        infinite

        alternate;

}


@keyframes blink {

    from {

        opacity: 0.25;

    }

    to {

        opacity: 1;

    }

}


.processing-track {

    height: 3px;

    margin:

        13px

        0;

    overflow: hidden;

    background:
        #353129;

}


.processing-fill {

    width: 30%;

    height: 100%;

    background:
        var(--amber);

    animation:

        processingMove

        1.15s

        ease-in-out

        infinite;

}


@keyframes processingMove {

    from {

        transform:
            translateX(-120%);

    }

    to {

        transform:
            translateX(430%);

    }

}


.status-panel > span {

    color:
        var(--muted);

    font-size: 11px;

}


/* =========================================================
   RESULT
========================================================= */

.result-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 16px;

}


.result-header strong {

    display: block;

    margin-top: 4px;

    font-size: 13px;

}


.result-status {

    padding:

        5px

        8px;

    border:

        1px solid

        var(--green-dark);

    border-radius: 3px;

    color:
        var(--green);

    font-family:

        "Courier New",

        monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

}


.audio-compare {

    display: grid;

    grid-template-columns:

        repeat(

            2,

            minmax(0, 1fr)

        );

    gap: 10px;

}


.audio-player-panel {

    padding: 13px;

    min-width: 0;

    border:

        1px solid

        #39342d;

    border-radius: 4px;

    background:
        #171512;

}


.enhanced-player {

    border-color:

        rgba(142, 170, 120, 0.55);

    background:

        rgba(142, 170, 120, 0.035);

}


.player-header {

    margin-bottom: 11px;

    display: flex;

    align-items: center;

    gap: 9px;

}


.player-header strong {

    font-family:

        "Courier New",

        monospace;

    font-size: 10px;

    letter-spacing: 1px;

}


.audio-player-panel audio {

    display: block;

    width: 100%;

    height: 38px;

}


/* =========================================================
   DOWNLOAD BUTTON
========================================================= */

.download-button {

    padding:

        11px

        14px;

    border:

        1px solid

        var(--green-dark);

    border-radius: 3px;

    background:
        transparent;

    color:
        var(--green);

    font-family:

        "Courier New",

        monospace;

    font-size: 10px;

    letter-spacing: 1px;

}


.download-button:hover {

    background:

        rgba(142, 170, 120, 0.08);

}


.result-download {

    width: 100%;

    margin-top: 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   ERRORS
========================================================= */

.error-panel {

    border-color:

        rgba(190, 92, 75, 0.5);

    color:
        #e08778;

    font-size: 12px;

}


/* =========================================================
   RACK SPECS
========================================================= */

.rack-specs {

    margin-top: 18px;

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    border:

        1px solid

        #39342d;

    border-radius: 4px;

}


.rack-specs div {

    padding:

        11px

        13px;

    border-right:

        1px solid

        #39342d;

}


.rack-specs div:last-child {

    border-right: 0;

}


.rack-specs span,
.rack-specs strong {

    display: block;

}


.rack-specs span {

    color:
        var(--muted-dark);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.8px;

}


.rack-specs strong {

    margin-top: 4px;

    color:
        #c8bfb1;

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   CONTENT
========================================================= */

.content-section {

    width: 100%;

    max-width:
        var(--tool-width);

    margin:

        58px

        auto

        0;

}


.section-heading {

    max-width: 590px;

    margin:

        0

        auto

        24px;

    text-align: center;

}


.section-heading h2 {

    margin-top: 9px;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size:

        clamp(

            27px,

            4vw,

            35px

        );

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -1.1px;

}


.section-heading > p:last-child {

    margin-top: 10px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   INFO CARDS
========================================================= */

.steps-grid,
.benefit-grid {

    display: grid;

    grid-template-columns:

        repeat(

            3,

            minmax(0, 1fr)

        );

    gap: 12px;

}


.info-card {

    min-height: 164px;

    padding: 19px;

    border:

        1px solid

        #39342d;

    border-radius: 5px;

    background:

        linear-gradient(

            145deg,

            rgba(45, 41, 36, 0.62),

            rgba(28, 26, 23, 0.62)

        );

}


.card-number {

    color:
        var(--amber-bright);

    font-family:

        "Courier New",

        monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

}


.info-card h3 {

    margin-top: 17px;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: 18px;

    font-weight: 500;

}


.info-card p {

    margin-top: 8px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   FORMATS
========================================================= */

.format-grid {

    display: grid;

    grid-template-columns:

        repeat(

            4,

            minmax(0, 1fr)

        );

    gap: 9px;

}


.format-chip {

    min-height: 76px;

    padding: 14px;

    display: flex;

    justify-content: center;

    flex-direction: column;

    border:

        1px solid

        #39342d;

    border-radius: 4px;

    background:

        rgba(0, 0, 0, 0.12);

}


.format-chip strong {

    color:
        var(--amber-bright);

    font-family:

        "Courier New",

        monospace;

    font-size: 13px;

    letter-spacing: 1px;

}


.format-chip span {

    margin-top: 4px;

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   FAQ
========================================================= */

.faq-list {

    border-top:

        1px solid

        #39342d;

}


.faq-list article {

    padding:

        19px

        2px;

    border-bottom:

        1px solid

        #39342d;

}


.faq-list h3 {

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: 17px;

    font-weight: 500;

}


.faq-list p {

    max-width: 650px;

    margin-top: 7px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   SEO LINE
========================================================= */

.seo-line {

    max-width: 620px;

    margin:

        24px

        auto

        0;

    color:
        var(--muted-dark);

    text-align: center;

    font-size: 11px;

    line-height: 1.65;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    width:

        min(

            calc(100% - 44px),

            1180px

        );

    min-height: 58px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:

        1px solid

        rgba(255, 255, 255, 0.05);

    color:
        var(--muted-dark);

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.4px;

}


.footer-links {

    display: flex;

    align-items: center;

    gap: 18px;

}


.footer-links a {

    transition:

        color

        140ms

        ease;

}


.footer-links a:hover {

    color:
        var(--amber-bright);

}


/* =========================================================
   DOWNLOAD MODAL
========================================================= */

.download-modal {

    position: fixed;

    z-index: 1000;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 22px;

}


.download-modal-backdrop {

    position: absolute;

    inset: 0;

    background:

        rgba(10, 9, 8, 0.82);

    backdrop-filter:
        blur(5px);

}


.download-modal-card {

    position: relative;

    z-index: 1;

    width:

        min(

            100%,

            560px

        );

    padding: 26px;

    border:

        1px solid

        #4c463d;

    border-radius: 7px;

    background:

        linear-gradient(

            145deg,

            var(--rack-light),

            var(--rack-dark)

        );

    box-shadow:

        0

        30px

        100px

        rgba(0, 0, 0, 0.62);

}


.download-modal-close {

    position: absolute;

    top: 12px;

    right: 14px;

    width: 32px;

    height: 32px;

    border: 0;

    background:
        transparent;

    color:
        var(--muted);

    font-size: 24px;

    line-height: 1;

}


.download-modal-close:hover {

    color:
        var(--text);

}


.download-modal-header {

    padding-right: 36px;

}


.download-modal-header h2 {

    margin-top: 7px;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: 27px;

    font-weight: 500;

    letter-spacing: -0.8px;

}


.download-modal-header p {

    max-width: 440px;

    margin-top: 9px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.7;

}


.continue-download-button {

    width: 100%;

    min-height: 52px;

    margin-top: 20px;

    padding:

        0

        16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border:

        1px solid

        var(--green-dark);

    border-radius: 4px;

    background:

        rgba(142, 170, 120, 0.06);

    color:
        var(--green);

    font-family:

        "Courier New",

        monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

}


.continue-download-button:hover {

    background:

        rgba(142, 170, 120, 0.12);

    border-color:
        var(--green);

}


.continue-download-button:focus-visible,
.download-modal-close:focus-visible {

    outline:

        2px solid

        var(--amber);

    outline-offset: 2px;

}


/* =========================================================
   LEGAL / INFORMATION PAGES
========================================================= */

.legal-main {

    width:

        min(

            calc(100% - 44px),

            760px

        );

    margin:

        0

        auto;

    padding:

        58px

        0

        70px;

}


.legal-heading {

    margin-bottom: 42px;

    text-align: center;

}


.legal-heading h1 {

    margin-top: 10px;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size:

        clamp(

            36px,

            6vw,

            50px

        );

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1.8px;

}


.legal-heading > p:last-child {

    max-width: 520px;

    margin:

        13px

        auto

        0;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.75;

}


.legal-content {

    border-top:

        1px solid

        var(--line);

}


.legal-content section {

    padding:

        28px

        0;

    border-bottom:

        1px solid

        var(--line);

}


.legal-content h2 {

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: 21px;

    font-weight: 500;

    letter-spacing: -0.4px;

}


.legal-content p {

    margin-top: 11px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


.legal-content p + p {

    margin-top: 12px;

}


/* =========================================================
   ADS ENABLED - TABLET
========================================================= */

@media (max-width: 1100px) {

    body.ads-enabled .tool-ad-layout {

        display: flex;

    }


    body.ads-enabled .ad-rail {

        display:
            none !important;

    }

}


/* =========================================================
   MEDIUM
========================================================= */

@media (max-width: 720px) {

    .steps-grid,
    .benefit-grid {

        grid-template-columns:
            1fr;

    }


    .info-card {

        min-height: 0;

    }


    .format-grid {

        grid-template-columns:

            repeat(

                2,

                minmax(0, 1fr)

            );

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .topbar,
    .main,
    .footer {

        width:

            calc(

                100% - 26px

            );

    }


    .topbar {

        min-height: 70px;

    }


    .brand {

        font-size: 24px;

    }


    .main {

        padding:

            30px

            0

            25px;

    }


    .intro {

        margin-bottom: 20px;

    }


    .eyebrow,
    .technical-label {

        font-size: 10px;

    }


    .intro h1 {

        font-size: 33px;

        letter-spacing: -1.3px;

    }


    .intro-copy {

        font-size: 13px;

    }


    .tool-ad-layout {

        display: block;

    }


    .rack {

        padding:

            19px

            16px;

        border-radius: 6px;

    }


    .rack-header strong {

        font-size: 12px;

    }


    .meter {

        padding: 14px;

    }


    .upload-area {

        min-height: 150px;

        padding:

            20px

            15px;

    }


    .waveform {

        height: 54px;

        gap: 4px;

    }


    .file-panel {

        align-items:
            flex-start;

    }


    .file-name {

        max-width: 190px;

    }


    .file-right {

        align-items:
            flex-end;

        flex-direction:
            column;

        gap: 5px;

    }


    .rack-specs {

        grid-template-columns:

            repeat(

                2,

                1fr

            );

    }


    .rack-specs div {

        border-bottom:

            1px solid

            #39342d;

    }


    .rack-specs div:nth-child(2) {

        border-right: 0;

    }


    .rack-specs div:nth-child(3),
    .rack-specs div:nth-child(4) {

        border-bottom: 0;

    }


    .audio-compare {

        grid-template-columns:
            1fr;

    }


    .audio-player-panel {

        padding: 11px;

    }


    .content-section {

        margin-top: 45px;

    }


    .section-heading {

        margin-bottom: 19px;

    }


    .section-heading h2 {

        font-size: 27px;

    }


    .footer {

        padding:

            17px

            0;

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 11px;

    }


    .footer-links {

        flex-wrap:
            wrap;

        gap:

            9px

            15px;

    }


    .download-modal {

        padding: 13px;

    }


    .download-modal-card {

        padding:

            23px

            17px

            18px;

    }


    .download-modal-header h2 {

        font-size: 23px;

    }


    .legal-main {

        width:

            calc(

                100% - 30px

            );

        padding:

            40px

            0

            50px;

    }


    .legal-heading {

        margin-bottom: 28px;

    }


    .legal-heading h1 {

        font-size: 34px;

    }


    .legal-content section {

        padding:

            23px

            0;

    }


    .legal-content p {

        font-size: 12px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .intro h1 {

        font-size: 30px;

    }


    .rack-header {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .file-name {

        max-width: 160px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    *,
    *::before,
    *::after {

        animation:
            none !important;

        transition:
            none !important;

    }

}