/* =========================================================
   MOHSIN LABS
   PRODUCT OPPORTUNITY ENGINE
   FINAL CLEAN V1
========================================================= */


:root {

    --bg:
        #020c15;

    --panel:
        rgba(5, 24, 40, 0.94);

    --line:
        rgba(68, 151, 213, 0.16);

    --line-hover:
        rgba(63, 176, 255, 0.32);

    --text:
        #f5f8fb;

    --soft:
        #9fb2c1;

    --muted:
        #71899c;

    --blue:
        #28a9ff;

    --cyan:
        #34dbff;

    --green:
        #38e2ad;

    --yellow:
        #ffd34f;

    --red:
        #ff5b74;

    --purple:
        #9a6cff;

    --ease:
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--text);

    background:
        radial-gradient(
            circle at 76% 5%,
            rgba(20, 91, 166, 0.11),
            transparent 31%
        ),
        var(--bg);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 14px;

    font-weight: 500;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}

button,
input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

::selection {
    color: #ffffff;

    background:
        rgba(36, 147, 242, 0.46);
}


/* =========================================================
   GLOBAL
========================================================= */

.site-shell {
    width: 100%;
    min-height: 100vh;

    overflow-x: hidden;
}

.page-container {
    width:
        min(
            calc(100% - 48px),
            1450px
        );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;

    z-index: 100;

    height: 78px;

    display: flex;
    align-items: center;

    border-bottom:
        1px solid
        rgba(57, 137, 198, 0.13);

    background:
        rgba(2, 13, 22, 0.97);

    backdrop-filter:
        blur(17px);

    animation:
        headerEnter
        650ms
        var(--ease)
        both;
}

.header-inner {
    height: 100%;

    display: grid;

    grid-template-columns:
        250px
        1fr
        auto;

    align-items: center;

    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    text-decoration: none;
}

.brand-logo {
    width: 225px;
    height: auto;
}


/* =========================================================
   HEADER NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 37px;
}

.main-nav a {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding:
        29px
        0
        25px;

    color:
        rgba(231, 241, 248, 0.86);

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color
        200ms
        ease,
        transform
        220ms
        var(--ease);
}

.main-nav a svg {
    width: 12px;
    height: 12px;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #2cdcff,
            #198eff
        );

    box-shadow:
        0
        0
        10px
        rgba(35, 168, 255, 0.55);

    transition:
        width
        280ms
        var(--ease);
}

.main-nav a:hover {
    color: #ffffff;

    transform:
        translateY(-1px);
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 16px;
}

.theme-button {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid
        rgba(74, 142, 195, 0.20);

    border-radius: 50%;

    color: #b9d0e2;

    background:
        rgba(20, 57, 83, 0.68);

    cursor: pointer;

    transition:
        transform
        240ms
        var(--ease),
        background
        240ms
        ease;
}

.theme-button:hover {
    transform:
        rotate(-10deg)
        scale(1.06);

    background:
        rgba(25, 77, 112, 0.82);
}

.theme-button svg {
    width: 17px;
    height: 17px;
}


/* =========================================================
   BUTTON SYSTEM
========================================================= */

.header-cta,
.primary-button {
    position: relative;

    overflow: hidden;

    isolation: isolate;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding:
        0
        19px;

    border:
        1px solid
        rgba(19, 181, 255, 0.82);

    border-radius: 999px;

    color: #ffffff;

    background:
        rgba(4, 29, 48, 0.74);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform
        220ms
        var(--ease),
        border-color
        220ms
        ease,
        box-shadow
        220ms
        ease;
}

.header-cta::before,
.primary-button::before {
    content: "";

    position: absolute;

    z-index: -1;

    top: -160%;
    left: -45%;

    width: 34%;
    height: 420%;

    transform:
        rotate(20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transition:
        left
        600ms
        var(--ease);
}

.header-cta:hover::before,
.primary-button:hover::before {
    left: 130%;
}

.header-cta:hover,
.primary-button:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(53, 190, 255, 0.95);

    box-shadow:
        0
        12px
        30px
        rgba(20, 137, 244, 0.15);
}

.header-cta svg,
.primary-button svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 340px;

    overflow: hidden;

    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            #020d16 0%,
            #03131f 55%,
            #041521 100%
        );
}

.hero-glow {
    position: absolute;

    z-index: -3;

    width: 650px;
    height: 420px;

    right: -60px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(18, 118, 225, 0.16),
            transparent 68%
        );

    filter:
        blur(18px);
}

.hero-stars {
    position: absolute;

    inset: 0;

    z-index: -4;

    opacity: 0.26;

    background-image:
        radial-gradient(
            circle,
            rgba(108, 195, 255, 0.72) 0.7px,
            transparent 0.7px
        );

    background-size:
        74px
        74px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 38%,
            black
        );

    animation:
        starFloat
        30s
        linear
        infinite;
}

.hero-inner {
    min-height: 340px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(390px, 0.75fr);

    align-items: center;

    gap: 28px;
}


/* =========================================================
   HERO LEFT
========================================================= */

.hero-copy {
    position: relative;

    z-index: 5;

    padding:
        25px
        0
        24px;

    animation:
        heroCopyEnter
        760ms
        var(--ease)
        both;
}

.hero-copy h1 {
    max-width: 820px;

    margin:
        0
        0
        9px;

    font-family:
        "Sora",
        sans-serif;

    font-size:
        clamp(
            39px,
            3.7vw,
            51px
        );

    font-weight: 700;

    line-height: 1.04;

    letter-spacing:
        -0.045em;
}

.hero-copy h2 {
    max-width: 780px;

    margin:
        0
        0
        8px;

    color:
        rgba(243, 248, 252, 0.95);

    font-size:
        clamp(
            17px,
            1.55vw,
            21px
        );

    font-weight: 500;

    line-height: 1.35;

    letter-spacing:
        -0.015em;
}

.hero-description {
    max-width: 800px;

    margin:
        0
        0
        20px;

    color: #9db6c8;

    font-size: 13.5px;

    line-height: 1.58;
}


/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, max-content);

    align-items: center;

    gap: 24px;
}

.hero-benefit {
    display: flex;
    align-items: center;

    gap: 9px;

    color:
        rgba(223, 235, 244, 0.86);

    font-size: 9.5px;
    font-weight: 600;

    line-height: 1.35;
}

.benefit-icon {
    width: 38px;
    height: 38px;

    flex:
        0
        0
        38px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(32, 222, 175, 0.17);

    border-radius: 8px;

    color: #2be2aa;

    background:
        rgba(14, 87, 70, 0.27);

    transition:
        transform
        220ms
        var(--ease),
        box-shadow
        220ms
        ease;
}

.hero-benefit:hover
.benefit-icon {
    transform:
        translateY(-3px);

    box-shadow:
        0
        10px
        25px
        rgba(25, 211, 162, 0.12);
}

.benefit-icon svg {
    width: 19px;
    height: 19px;
}


/* =========================================================
   HERO RIGHT IMAGE
========================================================= */

.hero-visual {
    position: relative;

    min-height: 340px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    animation:
        heroVisualEnter
        900ms
        100ms
        var(--ease)
        both;
}

.hero-product-image {
    width: min(
        100%,
        515px
    );

    height: auto;

    object-fit: contain;

    object-position: right center;

    filter:
        drop-shadow(
            0
            28px
            35px
            rgba(0, 0, 0, 0.26)
        );

    animation:
        heroImageFloat
        7s
        ease-in-out
        infinite;

    transform-origin:
        center;
}


/* =========================================================
   HERO BOTTOM LIGHT
========================================================= */

.hero-bottom-line {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(20, 194, 255, 0.75) 24%,
            rgba(28, 227, 171, 0.42) 58%,
            transparent 100%
        );

    box-shadow:
        0
        0
        14px
        rgba(35, 170, 255, 0.18);
}


/* =========================================================
   ANALYZER
========================================================= */

.analyzer-section {
    padding:
        16px
        0
        30px;
}

.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(
            12,
            minmax(0, 1fr)
        );

    gap: 14px;
}


/* =========================================================
   DASHBOARD CARDS
========================================================= */

.dashboard-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    padding: 20px;

    border:
        1px solid
        var(--line);

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(6, 27, 45, 0.94),
            rgba(3, 17, 30, 0.95)
        );

    box-shadow:
        inset
        0
        1px
        0
        rgba(255, 255, 255, 0.02),
        0
        18px
        40px
        rgba(0, 0, 0, 0.08);

    transition:
        transform
        320ms
        var(--ease),
        border-color
        320ms
        ease,
        box-shadow
        320ms
        ease;
}

.dashboard-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 12%;

    width: 76%;
    height: 1px;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(75, 192, 255, 0.40),
            transparent
        );

    transition:
        opacity
        320ms
        ease;
}

.dashboard-card:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--line-hover);

    box-shadow:
        0
        24px
        55px
        rgba(0, 0, 0, 0.18);
}

.dashboard-card:hover::before {
    opacity: 1;
}


/* =========================================================
   DASHBOARD GRID
========================================================= */

.inputs-card {
    grid-column:
        span 4;
}

.score-card {
    grid-column:
        span 4;
}

.dashboard-column {
    grid-column:
        span 4;

    display: grid;

    gap: 14px;
}

.stress-card {
    grid-column:
        span 6;
}

.intelligence-card {
    grid-column:
        span 6;
}

.simulator-card {
    grid-column:
        span 5;
}

.targets-card {
    grid-column:
        span 3;
}

.marketplace-card {
    grid-column:
        span 4;
}


/* =========================================================
   HEADINGS
========================================================= */

.card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}

.heading-left {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 9px;
}

.heading-left h3 {
    margin: 0;

    font-family:
        "Sora",
        sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing:
        -0.025em;
}

.heading-left h3 span {
    color: var(--blue);
}

.heading-icon {
    width: 29px;
    height: 29px;

    flex:
        0
        0
        29px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(43, 145, 229, 0.10);

    border-radius: 8px;

    color: #32aefb;

    background:
        rgba(24, 109, 187, 0.11);

    transition:
        transform
        220ms
        var(--ease);
}

.dashboard-card:hover
.heading-icon {
    transform:
        translateY(-2px);
}

.heading-icon svg {
    width: 14px;
    height: 14px;
}

.green-heading {
    color: var(--green);
}

.card-description {
    margin:
        10px
        0
        17px;

    color: #7890a3;

    font-size: 10.5px;

    line-height: 1.55;
}

.reset-button {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 0;

    border: 0;

    color: #899dae;

    background: none;

    font-size: 9.5px;

    cursor: pointer;
}

.reset-button:hover {
    color: #ffffff;
}

.reset-button svg {
    width: 12px;
    height: 12px;
}

.small-badge {
    padding:
        5px
        8px;

    border:
        1px solid
        rgba(70, 142, 198, 0.13);

    border-radius: 6px;

    color: #a1b5c4;

    background:
        rgba(19, 64, 97, 0.24);

    font-size: 8.5px;
}


/* =========================================================
   INPUTS
========================================================= */

.input-list {
    display: grid;

    gap: 10px;
}

.input-row {
    display: grid;

    grid-template-columns:
        1fr
        1.35fr;

    align-items: center;

    gap: 13px;
}

.input-label {
    color: #a4b5c2;

    font-size: 10.5px;
    font-weight: 600;
}

.input-control {
    min-width: 0;
}

.value-field,
.select-shell {
    position: relative;

    min-height: 40px;

    display: flex;
    align-items: center;

    border:
        1px solid
        rgba(49, 140, 214, 0.20);

    border-radius: 7px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 45, 71, 0.77),
            rgba(5, 31, 51, 0.80)
        );

    transition:
        border-color
        200ms
        ease,
        box-shadow
        200ms
        ease;
}

.value-field:focus-within,
.select-shell:focus-within,
.select-shell.premium-select-open {
    border-color:
        rgba(39, 164, 255, 0.56);

    box-shadow:
        0
        0
        0
        3px
        rgba(36, 144, 235, 0.07);
}

.value-field span {
    padding-left: 10px;

    color: #9fbdd2;

    font-size: 10px;
}

.value-field input {
    width: 100%;

    min-width: 0;

    padding:
        0
        9px;

    border: 0;

    outline: 0;

    color: #ffffff;

    background: transparent;

    font-size: 10.5px;
    font-weight: 600;

    font-variant-numeric:
        tabular-nums;
}

.suffix-field input {
    padding-left: 10px;
}

.suffix-field span {
    padding:
        0
        10px
        0
        0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    margin: 0;

    -webkit-appearance: none;
}


/* =========================================================
   CUSTOM SELECT
========================================================= */

.select-shell {
    overflow: visible;
}

.select-shell > svg {
    position: absolute;

    z-index: 3;

    left: 11px;
    top: 50%;

    width: 13px;
    height: 13px;

    color: var(--yellow);

    transform:
        translateY(-50%);

    pointer-events: none;
}

.select-shell select.premium-native-select {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.premium-select-trigger {
    width: 100%;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding:
        0
        11px
        0
        35px;

    border: 0;

    outline: 0;

    color: #ffffff;

    background: transparent;

    font-size: 10.5px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;
}

.premium-select-chevron {
    width: 7px;
    height: 7px;

    border-right:
        1.5px solid
        #9eb5c6;

    border-bottom:
        1.5px solid
        #9eb5c6;

    transform:
        translateY(-2px)
        rotate(45deg);

    transition:
        transform
        240ms
        var(--ease);
}

.premium-select-open
.premium-select-chevron {
    transform:
        translateY(2px)
        rotate(225deg);
}

.premium-select-menu {
    position: absolute;

    z-index: 500;

    left: -1px;
    right: -1px;

    top:
        calc(
            100% + 8px
        );

    max-height: 225px;

    overflow-y: auto;

    padding: 7px;

    border:
        1px solid
        rgba(54, 157, 238, 0.28);

    border-radius: 10px;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-7px)
        scale(0.985);

    transform-origin:
        top center;

    background:
        linear-gradient(
            155deg,
            rgba(8, 31, 51, 0.99),
            rgba(3, 17, 29, 0.995)
        );

    backdrop-filter:
        blur(20px);

    box-shadow:
        0
        24px
        65px
        rgba(0, 0, 0, 0.5);

    transition:
        opacity
        190ms
        ease,
        transform
        240ms
        var(--ease),
        visibility
        190ms
        ease;
}

.premium-select-open
.premium-select-menu {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.premium-select-option {
    width: 100%;
    min-height: 38px;

    display: flex;
    align-items: center;

    padding:
        0
        11px;

    border: 0;

    border-radius: 7px;

    color:
        rgba(213, 229, 241, 0.77);

    background: transparent;

    font-size: 10.5px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition:
        background
        160ms
        ease,
        color
        160ms
        ease,
        transform
        160ms
        ease;
}

.premium-select-option:hover {
    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(28, 137, 226, 0.18),
            rgba(35, 215, 178, 0.05)
        );

    transform:
        translateX(2px);
}

.premium-select-option.is-selected {
    color: #ffffff;

    background:
        rgba(27, 130, 213, 0.15);
}

.premium-select-option.is-selected::after {
    content: "";

    width: 6px;
    height: 6px;

    margin-left: auto;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0
        0
        9px
        rgba(57, 226, 173, 0.65);
}


/* =========================================================
   RANGE
========================================================= */

.micro-range,
.simulator-list input[type="range"] {
    --range-fill: 50%;

    width: 100%;
    height: 4px;

    margin-top: 6px;

    appearance: none;
    -webkit-appearance: none;

    border-radius: 999px;

    outline: none;

    background:
        linear-gradient(
            90deg,
            #24a9ff 0%,
            #258dff var(--range-fill),
            rgba(65, 107, 137, 0.28)
            var(--range-fill),
            rgba(65, 107, 137, 0.28)
            100%
        );
}

.micro-range::-webkit-slider-thumb,
.simulator-list input[type="range"]::-webkit-slider-thumb {
    width: 14px;
    height: 14px;

    border:
        2px solid
        #071827;

    border-radius: 50%;

    appearance: none;
    -webkit-appearance: none;

    background:
        linear-gradient(
            135deg,
            #45dcff,
            #158cff
        );

    box-shadow:
        0
        0
        0
        3px
        rgba(39, 157, 255, 0.10),
        0
        0
        12px
        rgba(38, 155, 255, 0.35);

    cursor: grab;

    transition:
        transform
        160ms
        ease;
}

.micro-range::-webkit-slider-thumb:hover,
.simulator-list input[type="range"]::-webkit-slider-thumb:hover {
    transform:
        scale(1.15);
}


/* =========================================================
   SCORE
========================================================= */

@property --score {
    syntax:
        "<number>";

    inherits:
        false;

    initial-value:
        0;
}

.score-card {
    display: flex;
    flex-direction: column;
}

.score-area {
    margin-top: 13px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 14px;
}

.score-ring {
    --score: 79;

    width: 152px;

    aspect-ratio: 1;

    position: relative;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            #38e1aa
            calc(
                var(--score) * 1%
            ),
            rgba(72, 117, 143, 0.22)
            0
        );

    box-shadow:
        0
        0
        40px
        rgba(55, 225, 171, 0.07);

    transition:
        --score
        850ms
        var(--ease);
}

.score-ring::before {
    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 50%;

    background: #061827;
}

.score-ring-inner {
    position: relative;

    z-index: 2;

    text-align: center;
}

.score-ring-inner strong {
    display: block;

    font-family:
        "Sora",
        sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1;

    letter-spacing:
        -0.055em;
}

.score-ring-inner span {
    display: block;

    margin-top: 8px;

    color: #8198aa;

    font-size: 10px;
}

.score-verdict {
    width: 78%;

    padding:
        11px
        14px;

    border:
        1px solid
        rgba(54, 225, 170, 0.31);

    border-radius: 7px;

    color: var(--green);

    background:
        rgba(18, 104, 78, 0.10);

    font-family:
        "Sora",
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.5;

    text-align: center;
}

.score-breakdown {
    margin-top: 22px;

    display: grid;

    gap: 10px;
}

.score-row {
    display: grid;

    grid-template-columns:
        108px
        1fr
        52px;

    align-items: center;

    gap: 10px;

    color: #8ea3b4;

    font-size: 9px;
    font-weight: 600;
}

.score-row strong {
    color: #dce7ef;

    font-size: 9px;

    text-align: right;

    font-variant-numeric:
        tabular-nums;
}

.score-progress {
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(70, 112, 139, 0.22);
}

.score-progress span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #35d9a5,
            #5df2bd
        );

    transition:
        width
        700ms
        var(--ease);
}

.warning-score
.score-progress span {
    background:
        linear-gradient(
            90deg,
            #e8ca47,
            #ffda5b
        );
}

.score-total {
    margin-top: auto;

    padding-top: 17px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top:
        1px solid
        rgba(69, 130, 173, 0.10);

    color: #d9e4ec;

    font-size: 10px;
    font-weight: 600;
}

.score-total strong {
    font-family:
        "Sora",
        sans-serif;

    font-size: 14px;
}

.score-total small {
    color: #647d90;

    font-size: 8px;
}


/* =========================================================
   METRICS
========================================================= */

.metric-list {
    display: grid;
}

.metric-list > div {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom:
        1px solid
        rgba(59, 123, 168, 0.07);
}

.metric-list > div:last-child {
    border-bottom: 0;
}

.metric-list span {
    color: #8da1b1;

    font-size: 9.5px;
    font-weight: 600;
}

.metric-list strong {
    font-family:
        "Sora",
        sans-serif;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    letter-spacing:
        -0.025em;

    font-variant-numeric:
        tabular-nums;
}

.profit-row strong {
    color: var(--green);
}

.cyan-row strong {
    color: var(--cyan);
}


/* =========================================================
   SAFETY
========================================================= */

.safety-values {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 7px;
}

.safety-tile {
    min-width: 0;

    padding:
        10px
        5px;

    border-radius: 7px;

    text-align: center;

    background:
        rgba(7, 27, 44, 0.72);

    transition:
        transform
        200ms
        var(--ease);
}

.safety-tile:hover {
    transform:
        translateY(-2px);
}

.safety-tile strong {
    display: block;

    margin-bottom: 4px;

    font-family:
        "Sora",
        sans-serif;

    font-size: 10.5px;
}

.safety-tile span {
    color: #7890a2;

    font-size: 7px;
}

.danger-tile {
    border:
        1px solid
        rgba(255, 91, 116, 0.42);
}

.caution-tile {
    border:
        1px solid
        rgba(255, 212, 79, 0.42);
}

.safe-tile {
    border:
        1px solid
        rgba(57, 226, 173, 0.40);
}

.optimal-tile {
    border:
        1px solid
        rgba(41, 168, 255, 0.40);
}

.safety-track {
    position: relative;

    height: 17px;

    display: flex;

    margin-top: 15px;
}

.zone {
    flex: 1;

    height: 4px;

    margin-top: 6px;
}

.zone-danger {
    background: var(--red);
}

.zone-caution {
    background: var(--yellow);
}

.zone-safe {
    background: var(--green);
}

.zone-optimal {
    background: var(--blue);
}

.marker {
    position: absolute;

    top: 2px;

    width: 12px;
    height: 12px;

    border:
        2px solid
        #071827;

    border-radius: 50%;
}

.marker-one {
    left: 0;
    background: var(--red);
}

.marker-two {
    left: 31%;
    background: var(--yellow);
}

.marker-three {
    left: 67%;
    background: var(--green);
}

.marker-four {
    right: 0;
    background: var(--blue);
}


/* =========================================================
   STRESS
========================================================= */

.stress-list {
    display: grid;

    gap: 7px;
}

.stress-row {
    min-height: 53px;

    display: grid;

    grid-template-columns:
        1.45fr
        auto
        0.8fr
        1fr;

    align-items: center;

    gap: 12px;

    padding:
        0
        14px;

    border:
        1px solid
        rgba(61, 126, 173, 0.08);

    border-radius: 8px;

    background:
        rgba(3, 18, 30, 0.42);
}

.stress-row > span {
    color: #d7e1e9;

    font-size: 9.5px;
    font-weight: 600;
}

.stress-row > svg {
    width: 12px;
    height: 12px;

    color: #536d80;
}

.stress-row strong {
    color: #ffffff;

    font-size: 9.5px;
    font-weight: 700;
}

.stress-row em {
    display: flex;
    align-items: center;

    gap: 6px;

    font-size: 8.5px;
    font-style: normal;
    font-weight: 700;
}

.stress-row em svg {
    width: 12px;
    height: 12px;
}

.status-good {
    color: var(--green);
}

.status-warning {
    color: var(--yellow);
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.intelligence-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 26px;
}

.intel-column h4 {
    margin:
        4px
        0
        11px;

    font-family:
        "Sora",
        sans-serif;

    color: var(--green);

    font-size: 10px;
}

.considerations h4 {
    color: var(--yellow);
}

.intel-column ul,
.marketplace-list {
    margin: 0;
    padding: 0;

    display: grid;

    gap: 8px;

    list-style: none;
}

.intel-column li,
.marketplace-list li {
    display: flex;
    align-items: flex-start;

    gap: 7px;

    color: #a9bac7;

    font-size: 9px;

    line-height: 1.4;
}

.intel-column li svg,
.marketplace-list li svg {
    width: 12px;
    height: 12px;

    flex:
        0
        0
        12px;

    color: var(--green);
}

.considerations li svg {
    color: var(--yellow);
}

.recommendation {
    margin-top: 17px;

    padding:
        13px
        14px;

    display: flex;
    align-items: center;

    gap: 12px;

    border:
        1px solid
        rgba(52, 221, 167, 0.28);

    border-radius: 8px;

    background:
        rgba(24, 109, 82, 0.10);
}

.recommendation-icon {
    font-size: 19px;
}

.recommendation strong {
    display: block;

    margin-bottom: 4px;

    color: var(--green);

    font-family:
        "Sora",
        sans-serif;

    font-size: 9px;
}

.recommendation p {
    margin: 0;

    color: #a0b3c1;

    font-size: 8.5px;

    line-height: 1.5;
}


/* =========================================================
   SIMULATOR
========================================================= */

.simulator-list {
    display: grid;

    gap: 12px;
}

.simulator-list label {
    display: grid;

    grid-template-columns:
        100px
        minmax(0, 1fr)
        68px;

    align-items: center;

    gap: 12px;
}

.simulator-list label > span {
    color: #94a8b7;

    font-size: 9px;
    font-weight: 600;
}

.simulator-list strong {
    min-height: 28px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(50, 137, 210, 0.12);

    border-radius: 6px;

    color: #e9f2f9;

    background:
        rgba(9, 42, 67, 0.76);

    font-family:
        "Sora",
        sans-serif;

    font-size: 8px;
}


/* =========================================================
   TARGETS
========================================================= */

.target-block {
    position: relative;

    min-height: 93px;

    padding:
        11px
        10px
        10px
        17px;

    border-bottom:
        1px solid
        rgba(62, 126, 169, 0.08);
}

.target-block:last-child {
    border-bottom: 0;
}

.target-block::before {
    content: "";

    position: absolute;

    left: 0;
    top: 15px;

    width: 3px;
    height: 42px;

    border-radius: 999px;
}

.target-block > span {
    display: block;

    color: #7b92a3;

    font-size: 7.5px;

    line-height: 1.4;
}

.target-block strong {
    display: block;

    margin:
        5px
        0
        3px;

    font-family:
        "Sora",
        sans-serif;

    font-size: 23px;

    letter-spacing:
        -0.04em;
}

.target-block small {
    font-size: 7px;
    font-weight: 700;
}

.target-danger::before {
    background: var(--red);
}

.target-danger strong,
.target-danger small {
    color: var(--red);
}

.target-caution::before {
    background: var(--yellow);
}

.target-caution strong,
.target-caution small {
    color: var(--yellow);
}

.target-success::before {
    background: var(--green);
}

.target-success strong,
.target-success small {
    color: var(--green);
}


/* =========================================================
   MARKETPLACE
========================================================= */

.marketplace-list {
    margin-top: 17px;

    gap: 11px;
}

.marketplace-tip {
    margin-top: 20px;

    min-height: 52px;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 10px;

    padding:
        10px
        12px;

    border:
        1px solid
        rgba(37, 148, 239, 0.27);

    border-radius: 7px;

    background:
        rgba(12, 56, 91, 0.16);
}

.marketplace-tip > svg {
    width: 17px;
    height: 17px;

    color: #25adfb;
}

.marketplace-tip div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.marketplace-tip strong {
    color: #42bcfd;

    font-size: 8px;
}

.marketplace-tip span {
    color: #7892a5;

    font-size: 7.5px;

    line-height: 1.35;
}


/* =========================================================
   VALUE STRIP
========================================================= */

.value-strip {
    border-top:
        1px solid
        rgba(61, 124, 169, 0.05);

    border-bottom:
        1px solid
        rgba(61, 124, 169, 0.05);
}

.value-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.value-grid > div {
    min-height: 84px;

    padding:
        14px
        19px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-right:
        1px solid
        rgba(64, 126, 170, 0.06);

    transition:
        transform
        220ms
        var(--ease);
}

.value-grid > div:last-child {
    border-right: 0;
}

.value-grid > div:hover {
    transform:
        translateY(-2px);
}

.value-icon {
    width: 36px;
    height: 36px;

    flex:
        0
        0
        36px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(57, 226, 173, 0.17);

    border-radius: 50%;

    color: var(--green);

    background:
        rgba(27, 145, 111, 0.08);
}

.value-icon svg {
    width: 17px;
    height: 17px;
}

.warning-value {
    color: var(--yellow);

    border-color:
        rgba(255, 212, 79, 0.17);
}

.purple-value {
    color: var(--purple);

    border-color:
        rgba(155, 109, 255, 0.17);
}

.value-grid strong {
    display: block;

    margin-bottom: 4px;

    font-family:
        "Sora",
        sans-serif;

    color: #e7eef4;

    font-size: 9px;
}

.value-grid small {
    color: #698194;

    font-size: 7.5px;
}


/* =========================================================
   ECOSYSTEM
========================================================= */

.ecosystem-section {
    padding:
        27px
        0;
}

.ecosystem-card {
    min-height: 118px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        22px
        28px;

    border:
        1px solid
        rgba(45, 147, 230, 0.18);

    border-radius: 13px;

    background:
        radial-gradient(
            circle at 88% 50%,
            rgba(26, 119, 232, 0.15),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            rgba(5, 35, 54, 0.93),
            rgba(4, 28, 48, 0.90)
        );

    transition:
        transform
        300ms
        var(--ease),
        border-color
        300ms
        ease,
        box-shadow
        300ms
        ease;
}

.ecosystem-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(50, 163, 245, 0.30);

    box-shadow:
        0
        24px
        55px
        rgba(0, 0, 0, 0.15);
}

.section-kicker {
    display: inline-flex;

    margin-bottom: 9px;

    padding:
        5px
        10px;

    border:
        1px solid
        rgba(42, 222, 172, 0.17);

    border-radius: 999px;

    color: var(--green);

    background:
        rgba(27, 151, 114, 0.09);

    font-size: 7px;
    font-weight: 800;

    letter-spacing:
        0.12em;
}

.ecosystem-card h2 {
    margin:
        0
        0
        6px;

    font-family:
        "Sora",
        sans-serif;

    font-size: 21px;

    letter-spacing:
        -0.035em;
}

.ecosystem-card p {
    max-width: 740px;

    margin: 0;

    color: #778fa1;

    font-size: 8.5px;

    line-height: 1.55;
}

.primary-button {
    min-width: 160px;

    background:
        linear-gradient(
            135deg,
            #169cff,
            #276dff
        );

    box-shadow:
        0
        12px
        28px
        rgba(20, 105, 255, 0.18);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    border-top:
        1px solid
        rgba(65, 127, 169, 0.07);

    background:
        rgba(2, 10, 17, 0.86);
}

.footer-inner {
    min-height: 112px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;
}

.footer-brand {
    width: fit-content;
}

.footer-logo {
    width: 185px;
    height: auto;
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 27px;
}

.footer-links a {
    position: relative;

    padding:
        10px
        0;

    color: #8499aa;

    font-size: 9.5px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color
        180ms
        ease;
}

.footer-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 0;
    height: 1px;

    transform:
        translateX(-50%);

    background: var(--blue);

    transition:
        width
        220ms
        var(--ease);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 34px;
}

.footer-handwritten {
    color: #f2f7fb;

    font-family:
        "Caveat",
        cursive;

    font-size: 22px;
    font-weight: 600;

    line-height: 0.88;

    transform:
        rotate(-3deg);
}

.footer-end small {
    color: #61798b;

    font-size: 9px;
}


/* =========================================================
   PREMIUM SCROLLBAR
========================================================= */

* {
    scrollbar-width: thin;

    scrollbar-color:
        rgba(42, 142, 213, 0.55)
        rgba(4, 18, 30, 0.4);
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background:
        rgba(3, 15, 26, 0.60);
}

*::-webkit-scrollbar-thumb {
    border:
        2px solid
        rgba(3, 15, 26, 0.70);

    border-radius: 999px;

    background:
        linear-gradient(
            to bottom,
            rgba(37, 161, 241, 0.68),
            rgba(31, 111, 188, 0.68)
        );
}


/* =========================================================
   REVEAL MOTION
========================================================= */

.motion-ready
.dashboard-card,
.motion-ready
.value-grid > div,
.motion-ready
.ecosystem-card {
    opacity: 0;

    transform:
        translateY(20px);
}

.motion-ready
.dashboard-card.is-visible,
.motion-ready
.value-grid > div.is-visible,
.motion-ready
.ecosystem-card.is-visible {
    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity
        600ms
        var(--ease),
        transform
        600ms
        var(--ease),
        border-color
        300ms
        ease,
        box-shadow
        300ms
        ease;
}


/* =========================================================
   OPTIONAL DEEP THEME
========================================================= */

body.deep-theme {
    background:
        radial-gradient(
            circle at 75% 3%,
            rgba(17, 72, 133, 0.08),
            transparent 31%
        ),
        #010810;
}

body.deep-theme
.dashboard-card {
    background:
        linear-gradient(
            145deg,
            rgba(4, 20, 34, 0.97),
            rgba(2, 13, 23, 0.98)
        );
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes headerEnter {

    from {
        opacity: 0;

        transform:
            translateY(-10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes heroCopyEnter {

    from {
        opacity: 0;

        transform:
            translateX(-15px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes heroVisualEnter {

    from {
        opacity: 0;

        transform:
            translateX(15px)
            scale(0.985);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }

}


@keyframes heroImageFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-5px);
    }

}


@keyframes starFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns:
            1fr
            auto;
    }

    .hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            330px;

        gap: 20px;
    }

    .hero-copy h1 {
        font-size: 43px;
    }

    .hero-benefits {
        grid-template-columns:
            1fr
            1fr;

        width: fit-content;
    }

    .hero-product-image {
        width: 390px;
    }

    .inputs-card,
    .score-card {
        grid-column:
            span 6;
    }

    .dashboard-column {
        grid-column:
            span 12;

        grid-template-columns:
            1fr
            1fr;
    }

    .stress-card,
    .intelligence-card {
        grid-column:
            span 12;
    }

    .simulator-card,
    .targets-card {
        grid-column:
            span 6;
    }

    .marketplace-card {
        grid-column:
            span 12;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 820px) {

    .page-container {
        width:
            calc(
                100% - 28px
            );
    }

    .site-header {
        height: 68px;
    }

    .brand-logo {
        width: 165px;
    }

    .theme-button {
        display: none;
    }

    .header-cta {
        min-height: 40px;

        padding:
            0
            13px;

        font-size: 9px;
    }

    .hero-inner {
        min-height: auto;

        padding:
            30px
            0
            22px;

        grid-template-columns:
            1fr;

        gap: 16px;

        text-align: center;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-copy h1 {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        font-size:
            clamp(
                38px,
                8vw,
                48px
            );
    }

    .hero-copy h2,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        margin-inline: auto;
    }

    .hero-visual {
        min-height: 270px;

        justify-content: center;
    }

    .hero-product-image {
        width:
            min(
                100%,
                440px
            );
    }

    .inputs-card,
    .score-card,
    .dashboard-column,
    .stress-card,
    .intelligence-card,
    .simulator-card,
    .targets-card,
    .marketplace-card {
        grid-column:
            span 12;
    }

    .dashboard-column {
        grid-template-columns:
            1fr;
    }

    .value-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .ecosystem-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-inner {
        padding:
            27px
            0;

        grid-template-columns:
            1fr;

        justify-items: center;

        text-align: center;
    }

    .footer-end {
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .page-container {
        width:
            calc(
                100% - 22px
            );
    }

    .brand-logo {
        width: 155px;
    }

    .header-cta {
        display: none;
    }

    .header-inner {
        display: flex;

        justify-content: center;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy h2 {
        font-size: 16px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-benefits {
        grid-template-columns:
            1fr
            1fr;

        gap:
            11px
            15px;
    }

    .hero-benefit {
        text-align: left;

        font-size: 8.5px;
    }

    .benefit-icon {
        width: 32px;
        height: 32px;

        flex-basis: 32px;
    }

    .hero-product-image {
        width: 350px;
    }

    .dashboard-card {
        padding: 15px;
    }

    .input-row {
        grid-template-columns:
            1fr;

        gap: 7px;
    }

    .score-row {
        grid-template-columns:
            88px
            1fr
            45px;
    }

    .score-verdict {
        width: 100%;
    }

    .stress-row {
        grid-template-columns:
            1fr
            auto;

        gap: 8px;

        padding:
            10px
            11px;
    }

    .stress-row > svg {
        display: none;
    }

    .stress-row strong {
        text-align: right;
    }

    .stress-row em {
        grid-column:
            1 / -1;

        justify-content:
            flex-end;
    }

    .intelligence-grid {
        grid-template-columns:
            1fr;
    }

    .simulator-list label {
        grid-template-columns:
            84px
            minmax(0, 1fr)
            58px;

        gap: 8px;
    }

    .safety-values {
        grid-template-columns:
            1fr
            1fr;
    }

    .value-grid {
        grid-template-columns:
            1fr;
    }

    .value-grid > div {
        border-right: 0;

        border-bottom:
            1px solid
            rgba(64, 126, 170, 0.06);
    }

    .primary-button {
        width: 100%;
    }

    .footer-logo {
        width: 175px;
    }

    .footer-links {
        flex-wrap: wrap;

        justify-content: center;

        gap:
            8px
            22px;
    }

    .footer-links a {
        font-size: 10px;
    }

    .footer-end {
        flex-direction: column;

        gap: 14px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

}

/* =========================================================
   MOHSIN LABS
   FINAL RESPONSIVE POLISH
   Desktop design remains untouched
========================================================= */


/* =========================================================
   TABLET
   700px — 900px

   Goal:
   preserve the dashboard feeling instead of
   turning the entire website into one long mobile column.
========================================================= */

@media (min-width: 700px) and (max-width: 900px) {

    /* -----------------------------------------
       CONTAINER
    ------------------------------------------ */

    .page-container {
        width:
            calc(
                100% - 34px
            );
    }


    /* -----------------------------------------
       HEADER
    ------------------------------------------ */

    .site-header {
        height: 70px;
    }

    .header-inner {
        height: 70px;

        grid-template-columns:
            1fr
            auto;

        gap: 20px;
    }

    .brand-logo {
        width: 175px;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        min-height: 41px;

        padding:
            0
            15px;

        font-size: 9.5px;
    }


    /* -----------------------------------------
       HERO

       Keep the elegant centered tablet composition
       from the version you approved.
    ------------------------------------------ */

    .hero-inner {
        min-height: auto;

        padding:
            32px
            0
            26px;

        grid-template-columns:
            1fr;

        gap: 18px;

        text-align: center;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-copy h1 {
        max-width: 720px;

        margin-left: auto;
        margin-right: auto;

        font-size:
            clamp(
                40px,
                6.4vw,
                50px
            );
    }

    .hero-copy h2 {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        font-size: 17px;
    }

    .hero-description {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        font-size: 12.5px;
    }

    .hero-benefits {
        width: fit-content;

        margin-left: auto;
        margin-right: auto;

        grid-template-columns:
            repeat(
                4,
                max-content
            );

        gap: 17px;
    }

    .hero-benefit {
        font-size: 9px;

        text-align: left;
    }

    .benefit-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

    .benefit-icon svg {
        width: 17px;
        height: 17px;
    }

    .hero-visual {
        min-height: 280px;

        justify-content: center;
    }

    .hero-product-image {
        width:
            min(
                100%,
                440px
            );
    }


    /* =====================================================
       TABLET DASHBOARD
       Restore intelligent 2-column behavior
    ====================================================== */

    .dashboard-grid {
        gap: 12px;
    }


    /* Product Inputs + Score */

    .inputs-card,
    .score-card {
        grid-column:
            span 6;
    }


    /* Economics + Price Safety remain grouped */

    .dashboard-column {
        grid-column:
            span 12;

        grid-template-columns:
            1fr
            1fr;

        gap: 12px;
    }


    /* Stress + Intelligence side-by-side */

    .stress-card,
    .intelligence-card {
        grid-column:
            span 6;
    }


    /* Simulator + Targets */

    .simulator-card,
    .targets-card {
        grid-column:
            span 6;
    }


    /* Marketplace gets full width */

    .marketplace-card {
        grid-column:
            span 12;
    }


    /* -----------------------------------------
       CARD SPACING
    ------------------------------------------ */

    .dashboard-card {
        padding: 17px;

        border-radius: 12px;
    }

    .heading-left h3 {
        font-size: 13px;
    }

    .card-description {
        font-size: 10px;
    }


    /* -----------------------------------------
       INPUTS
    ------------------------------------------ */

    .input-row {
        grid-template-columns:
            0.9fr
            1.25fr;

        gap: 10px;
    }

    .input-label {
        font-size: 9.5px;
    }


    /* -----------------------------------------
       SCORE
    ------------------------------------------ */

    .score-ring {
        width: 140px;
    }

    .score-ring-inner strong {
        font-size: 38px;
    }

    .score-row {
        grid-template-columns:
            96px
            1fr
            48px;

        gap: 8px;

        font-size: 8.5px;
    }


    /* -----------------------------------------
       STRESS TEST
       Compress gracefully inside half-width card.
    ------------------------------------------ */

    .stress-row {
        min-height: 60px;

        grid-template-columns:
            1fr
            auto;

        gap:
            7px
            10px;

        padding:
            10px
            11px;
    }

    .stress-row > svg {
        display: none;
    }

    .stress-row > span {
        font-size: 8.8px;
    }

    .stress-row strong {
        font-size: 8.8px;

        text-align: right;
    }

    .stress-row em {
        grid-column:
            1 / -1;

        justify-content: flex-end;

        font-size: 8px;
    }


    /* -----------------------------------------
       DECISION INTELLIGENCE

       One internal column prevents cramped text.
    ------------------------------------------ */

    .intelligence-grid {
        grid-template-columns:
            1fr;

        gap: 12px;
    }

    .intel-column h4 {
        margin-bottom: 7px;
    }

    .intel-column ul {
        gap: 6px;
    }

    .intel-column li {
        font-size: 8.5px;
    }

    .recommendation {
        margin-top: 13px;

        padding:
            11px
            12px;
    }


    /* -----------------------------------------
       SIMULATOR
    ------------------------------------------ */

    .simulator-list label {
        grid-template-columns:
            86px
            minmax(0, 1fr)
            60px;

        gap: 9px;
    }

    .simulator-list label > span {
        font-size: 8.5px;
    }


    /* -----------------------------------------
       TARGETS
    ------------------------------------------ */

    .target-block {
        min-height: 89px;
    }

    .target-block strong {
        font-size: 21px;
    }


    /* -----------------------------------------
       VALUE STRIP
    ------------------------------------------ */

    .value-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .value-grid > div {
        min-height: 74px;
    }


    /* -----------------------------------------
       FOOTER
    ------------------------------------------ */

    .footer-inner {
        min-height: 100px;

        padding:
            22px
            0;

        grid-template-columns:
            1fr
            auto;

        gap: 20px;
    }

    .footer-brand {
        justify-self: start;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-links {
        grid-column:
            1 / -1;

        grid-row: 2;

        justify-content: center;

        gap: 24px;
    }

    .footer-end {
        justify-content: flex-end;
    }

}


/* =========================================================
   MOBILE READABILITY POLISH
   <= 560px

   We are NOT enlarging the cards.
   Only the smallest typography becomes easier to read.
========================================================= */

@media (max-width: 560px) {

    /* -----------------------------------------
       GENERAL CARD TEXT
    ------------------------------------------ */

    .heading-left h3 {
        font-size: 14px;
    }

    .card-description {
        font-size: 11px;

        line-height: 1.55;
    }


    /* -----------------------------------------
       INPUT CARD
    ------------------------------------------ */

    .input-label {
        font-size: 10.5px;
    }

    .value-field input,
    .premium-select-trigger {
        font-size: 11px;
    }

    .premium-select-option {
        font-size: 10.5px;
    }


    /* -----------------------------------------
       SCORE
    ------------------------------------------ */

    .score-row {
        font-size: 9.2px;
    }

    .score-row strong {
        font-size: 9px;
    }

    .score-total {
        font-size: 10px;
    }


    /* -----------------------------------------
       ECONOMICS
    ------------------------------------------ */

    .metric-list span {
        font-size: 10px;
    }

    .metric-list strong {
        font-size: 16.5px;
    }


    /* -----------------------------------------
       PRICE SAFETY
    ------------------------------------------ */

    .safety-tile strong {
        font-size: 11px;
    }

    .safety-tile span {
        font-size: 7.8px;
    }


    /* -----------------------------------------
       STRESS TEST
    ------------------------------------------ */

    .stress-row > span {
        font-size: 9.3px;
    }

    .stress-row strong {
        font-size: 9.3px;
    }

    .stress-row em {
        font-size: 8.5px;
    }


    /* -----------------------------------------
       INTELLIGENCE
    ------------------------------------------ */

    .intel-column h4 {
        font-size: 10px;
    }

    .intel-column li,
    .marketplace-list li {
        font-size: 9.3px;

        line-height: 1.45;
    }

    .recommendation strong {
        font-size: 9.3px;
    }

    .recommendation p {
        font-size: 8.8px;

        line-height: 1.5;
    }


    /* -----------------------------------------
       SIMULATOR
    ------------------------------------------ */

    .simulator-list label > span {
        font-size: 9px;
    }

    .simulator-list strong {
        font-size: 8.5px;
    }


    /* -----------------------------------------
       BREAK-EVEN / TARGETS
    ------------------------------------------ */

    .target-block > span {
        font-size: 8.3px;
    }

    .target-block strong {
        font-size: 23px;
    }

    .target-block small {
        font-size: 7.8px;
    }


    /* -----------------------------------------
       MARKETPLACE TIP
    ------------------------------------------ */

    .marketplace-tip strong {
        font-size: 8.5px;
    }

    .marketplace-tip span {
        font-size: 8px;

        line-height: 1.4;
    }


    /* -----------------------------------------
       VALUE STRIP
    ------------------------------------------ */

    .value-grid strong {
        font-size: 9.8px;
    }

    .value-grid small {
        font-size: 8px;

        line-height: 1.4;
    }


    /* -----------------------------------------
       ECOSYSTEM
    ------------------------------------------ */

    .section-kicker {
        font-size: 7.5px;
    }

    .ecosystem-card h2 {
        font-size: 20px;
    }

    .ecosystem-card p {
        font-size: 9px;

        line-height: 1.55;
    }


    /* -----------------------------------------
       FOOTER
    ------------------------------------------ */

    .footer-links a {
        font-size: 10px;
    }

    .footer-end small {
        font-size: 8.5px;
    }

    .footer-handwritten {
        font-size: 22px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   <= 390px
========================================================= */

@media (max-width: 390px) {

    .page-container {
        width:
            calc(
                100% - 18px
            );
    }

    .hero-copy h1 {
        font-size: 33px;
    }

    .hero-copy h2 {
        font-size: 15px;
    }

    .hero-description {
        font-size: 11.5px;
    }

    .hero-benefits {
        gap:
            10px
            12px;
    }

    .hero-benefit {
        font-size: 8.5px;
    }

    .dashboard-card {
        padding: 14px;
    }

    .score-ring {
        width: 135px;
    }

    .simulator-list label {
        grid-template-columns:
            78px
            minmax(0, 1fr)
            56px;

        gap: 7px;
    }

}

/* =========================================================
   MOHSIN LABS
   FINAL RESPONSIVE LOCK PATCH
========================================================= */


/* =========================================================
   TABLET — STOP SHORT CARDS FROM ARTIFICIALLY STRETCHING
========================================================= */

@media (min-width: 700px) and (max-width: 900px) {

    /*
       Profit Economics and Price Safety Zone
       should keep their natural individual heights.
    */

    .dashboard-column {
        align-items: start;
    }

    .dashboard-column > .dashboard-card {
        align-self: start;
        width: 100%;
    }


    /*
       Paired dashboard cards should not stretch vertically
       just because the card beside them is taller.
    */

    .stress-card,
    .intelligence-card,
    .simulator-card,
    .targets-card {
        align-self: start;
    }


    /*
       Keep Marketplace Fit naturally sized too.
    */

    .marketplace-card {
        align-self: start;
    }

}


/* =========================================================
   MOBILE — FINAL MICRO-TYPOGRAPHY READABILITY
   Only supporting text is increased slightly.
========================================================= */

@media (max-width: 560px) {

    .card-description {
        font-size: 11.3px;
        line-height: 1.6;
    }

    .recommendation p {
        font-size: 9px;
        line-height: 1.55;
    }

    .marketplace-tip span {
        font-size: 8.3px;
        line-height: 1.45;
    }

    .value-grid small {
        font-size: 8.3px;
        line-height: 1.45;
    }

    .ecosystem-card p {
        font-size: 9.3px;
        line-height: 1.6;
    }

    .footer-end small {
        font-size: 9px;
    }

}