:root {
    color-scheme: dark;
    --bg: #080b12;
    --panel: #101621;
    --panel-soft: #151d2b;
    --panel-raised: #182232;
    --text: #eef3f8;
    --muted: #94a3b8;
    --faint: #657386;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.12);
    --green: #35c6a5;
    --green-soft: rgba(53, 198, 165, 0.12);
    --blue: #6ab7ff;
    --blue-soft: rgba(106, 183, 255, 0.12);
    --amber: #f6b95b;
    --amber-soft: rgba(246, 185, 91, 0.14);
    --red: #ff6b7a;
    --red-soft: rgba(255, 107, 122, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 84% 8%, rgba(52, 211, 153, 0.03), transparent 34rem),
        radial-gradient(circle at 54% 38%, rgba(45, 212, 191, 0.03), transparent 42rem),
        radial-gradient(circle at 18% 12%, rgba(53, 198, 165, 0.025), transparent 30rem),
        linear-gradient(180deg, #080b12 0%, #0d1119 48%, #080b12 100%);
    color: var(--text);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.site-header,
main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0 8px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #061016;
    font-weight: 900;
    letter-spacing: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.98rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 4px;
    background: rgba(16, 22, 33, 0.7);
    backdrop-filter: blur(18px);
}

.nav-link {
    color: var(--muted);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.92rem;
    transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--panel-raised);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
    gap: clamp(48px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 96px);
    padding: 44px 0 64px;
}

.hero-copy {
    max-width: 760px;
    min-width: 0;
}

.eyebrow {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

h1 span {
    display: block;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.info-card p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-text {
    max-width: 600px;
    font-size: 1.12rem;
    margin-top: 32px;
    margin-bottom: 28px;
}

.hero-actions,
.scanner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    padding: 0 18px;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-btn {
    gap: 8px;
    border: 1px solid rgba(53, 198, 165, 0.55);
    background: linear-gradient(135deg, #35c6a5, #6ab7ff);
    color: #061016;
    font-weight: 900;
    box-shadow: 0 16px 46px rgba(53, 198, 165, 0.18);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-1px);
}

.primary-btn:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.secondary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.secondary-btn {
    border: 1px solid var(--line);
    background: rgba(16, 22, 33, 0.72);
    color: var(--text);
    font-weight: 750;
}

.signal-board {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 560px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(21, 29, 43, 0.96), rgba(12, 17, 27, 0.96));
    box-shadow: var(--shadow);
    padding: 18px;
    overflow: hidden;
}

.mini-card {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.6);
    padding: 14px;
}

.mini-card span,
.metric-strip span,
.scan-meta span,
.table-search span {
    color: var(--faint);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-card strong {
    color: var(--green);
}

.signal-chart {
    display: block;
    width: 100%;
    height: auto;
    margin: 18px 0;
}

.grid-line {
    stroke: rgba(148, 163, 184, 0.14);
    stroke-width: 1;
}

.area {
    fill: url(#areaGradient);
}

.rs-line,
.nifty-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rs-line {
    stroke: var(--green);
    stroke-width: 5;
}

.nifty-line {
    stroke: var(--blue);
    stroke-dasharray: 7 9;
    stroke-width: 3;
}

.chart-labels {
    fill: var(--muted);
    font-size: 18px;
    font-weight: 800;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-strip div,
.scan-meta div {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.46);
    padding: 16px;
}

.metric-strip strong,
.scan-meta strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(0.78rem, 0.9vw, 0.95rem);
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    letter-spacing: 0;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.section-block,
.theory-article,
.cta-band,
.scanner-hero,
.control-panel,
.results-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(16, 22, 33, 0.74);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.section-block {
    padding: clamp(24px, 4vw, 44px);
    margin-bottom: 22px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading.compact {
    display: block;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    gap: 18px;
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(21, 29, 43, 0.92), rgba(13, 17, 23, 0.78));
    padding: 22px;
    overflow: hidden;
}

.card-index {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #ffffff;
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.1;
    pointer-events: none;
}

.info-card h3 {
    padding-right: 46px;
}

.info-card p {
    margin-bottom: 22px;
}

.formula-pill,
.info-card code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    border: 1px solid rgba(53, 198, 165, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #0d1117, #0a0f15);
    color: #9ee7d3;
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
    padding: 10px 16px;
    white-space: normal;
    overflow-wrap: anywhere;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.formula-svg {
    display: block;
    width: min(100%, 224px);
    height: 48px;
    min-width: 0;
    overflow: hidden;
}

.formula-svg.compact {
    width: min(100%, 190px);
}

.formula-svg.wide {
    width: min(100%, 250px);
}

.formula-svg text {
    dominant-baseline: alphabetic;
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-weight: 800;
    letter-spacing: 0;
}

.math-main,
.math-label {
    fill: #a7fbe4;
    font-size: 19px;
}

.math-label {
    font-weight: 700;
}

.math-sub {
    fill: #78dec7;
    font-size: 9px;
    font-weight: 800;
}

.math-sigma {
    fill: var(--amber);
    font-size: 19px;
}

.math-rule {
    stroke: rgba(167, 251, 228, 0.82);
    stroke-linecap: round;
    stroke-width: 1.7;
}

.math-divider {
    stroke: rgba(255, 255, 255, 0.28);
    stroke-linecap: round;
    stroke-width: 2;
}

.math-formula {
    min-height: 56px;
    color: #a7fbe4;
    letter-spacing: 0;
}

.math-formula i {
    color: #c8fff0;
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-style: italic;
    font-weight: 700;
}

.math-formula sub {
    bottom: -0.28em;
    color: #7ddfc8;
    font-size: 0.64em;
    line-height: 0;
    margin-left: 1px;
    position: relative;
    vertical-align: baseline;
}

.math-formula .paren {
    color: #e8fff8;
    font-size: 1.18em;
}

.math-formula .sigma {
    color: var(--amber);
    font-size: 1.05em;
}

.math-formula .divider {
    color: rgba(255, 255, 255, 0.26);
}

.fraction {
    display: inline-grid;
    gap: 4px;
    min-width: 46px;
    text-align: center;
    transform: translateY(-1px);
}

.fraction span {
    display: block;
    padding: 0 5px;
}

.fraction span:first-child {
    border-bottom: 1px solid rgba(167, 251, 228, 0.72);
    padding-bottom: 4px;
}

.fraction span:last-child {
    padding-top: 1px;
}

.code-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-top: auto;
    border: 1px solid rgba(53, 198, 165, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #0d1117, #0a0f15);
    color: #9ee7d3;
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 0.88rem; /* Slightly larger for math clarity */
    font-weight: 700;
    line-height: 1.45;
    padding: 10px 16px;
    white-space: nowrap; /* Forces the equation to stay on one straight line */
    overflow-x: auto; /* Adds a scrollbar on mobile if the equation is very long */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theory-article {
    padding: clamp(24px, 5vw, 54px);
    margin-bottom: 22px;
}

.article-heading {
    max-width: 920px;
    margin-bottom: 34px;
}

.article-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.article-body {
    display: grid;
    gap: 16px;
}

.theory-topic {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.72), rgba(8, 11, 18, 0.52));
    padding: clamp(20px, 3vw, 30px);
}

.topic-number {
    color: rgba(255, 255, 255, 0.16);
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.theory-topic h3 {
    color: var(--text);
    font-size: clamp(1.18rem, 1.8vw, 1.55rem);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.theory-topic p {
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 14px;
}

.theory-topic p:last-child {
    margin-bottom: 0;
}

.formula-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.code-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    border: 1px solid rgba(53, 198, 165, 0.18);
    border-radius: 8px;
    background: #0d1117;
    color: #b9f4e4;
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
    padding: 9px 12px;
    white-space: normal;
    overflow-wrap: anywhere;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin: 22px 0 52px;
    padding: clamp(24px, 4vw, 38px);
}

.cta-band h2 {
    margin-bottom: 0;
}

.scanner-shell {
    padding: 44px 0 56px;
}

.scanner-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(24px, 4vw, 42px);
    margin-bottom: 18px;
}

.scanner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 56px);
}

.scanner-copy {
    min-width: 0;
}

.scanner-hero h1 {
    max-width: 820px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
}

.scanner-command-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background:
        radial-gradient(circle at 100% 0%, rgba(53, 198, 165, 0.12), transparent 16rem),
        linear-gradient(180deg, rgba(21, 29, 43, 0.92), rgba(13, 17, 23, 0.82));
    box-shadow: var(--shadow);
    padding: clamp(20px, 3vw, 28px);
}

.command-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.58);
    padding: 14px 16px;
}

.command-kicker span,
.command-lines span {
    color: var(--faint);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.command-kicker strong {
    color: var(--green);
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
}

.command-lines {
    display: grid;
    gap: 10px;
}

.command-lines div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.command-lines div:last-child {
    border-bottom: none;
}

.command-lines strong {
    color: var(--text);
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 0.86rem;
    text-align: right;
}

.scanner-command-card .scanner-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.scanner-command-card .primary-btn,
.scanner-command-card .secondary-btn {
    width: 100%;
}

.control-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 18px;
    margin-bottom: 18px;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.46);
    padding: 18px;
    color: var(--muted);
    font-weight: 750;
}

.status-box.loading {
    border-color: rgba(106, 183, 255, 0.32);
    background: var(--blue-soft);
    color: #dcefff;
}

.status-box.success {
    border-color: rgba(53, 198, 165, 0.36);
    background: var(--green-soft);
    color: #bff7e9;
}

.status-box.warning {
    border-color: rgba(246, 185, 91, 0.38);
    background: var(--amber-soft);
    color: #ffe3b3;
}

.status-box.error {
    border-color: rgba(255, 107, 122, 0.42);
    background: var(--red-soft);
    color: #ffd0d5;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-top-color: currentColor;
    border-radius: 999px;
    animation: spin 800ms linear infinite;
    flex: 0 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.scan-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.scan-meta-quad {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-panel {
    padding: clamp(18px, 3vw, 26px);
}

.results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.results-header h2 {
    margin-bottom: 0;
}

.table-search {
    display: grid;
    gap: 8px;
    min-width: min(320px, 100%);
}

.table-search input {
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.62);
    color: var(--text);
    outline: none;
    padding: 0 14px;
}

.table-search input:focus {
    border-color: rgba(53, 198, 165, 0.58);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(8, 11, 18, 0.42);
}

table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
    background: transparent;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 16px 14px;
    text-align: left;
}

th {
    color: var(--faint);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    background: rgba(13, 17, 23, 0.72);
}

th:hover {
    color: var(--green);
}

td {
    color: var(--text);
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 0.92rem;
    white-space: nowrap;
    background: rgba(8, 11, 18, 0.18);
}

tbody tr:hover {
    background: rgba(106, 183, 255, 0.06);
}

tbody tr:last-child td {
    border-bottom: none;
}

.ticker {
    color: var(--text);
    font-family: inherit;
    font-weight: 900;
}

.positive {
    color: var(--green);
}

.negative {
    color: var(--red);
}

.neutral {
    color: #c7d2df;
}

.highlight {
    color: #dcefff;
    font-weight: 900;
}

.stop-loss {
    color: var(--amber);
    font-weight: 900;
}

.empty-row td {
    color: var(--muted);
    padding: 28px 14px;
    text-align: center;
}

@media (max-width: 1040px) {
    .hero-grid,
    .section-heading,
    .control-panel {
        grid-template-columns: 1fr;
    }

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

    .scanner-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .scanner-hero-grid {
        grid-template-columns: 1fr;
    }

    .scanner-command-card {
        width: 100%;
    }

    .signal-board {
        justify-self: stretch;
        max-width: none;
    }

    h1 span {
        display: inline;
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-actions,
    .nav-link,
    .hero-actions,
    .scanner-actions,
    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .nav-link {
        text-align: center;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 34px;
    }

    h1 span {
        display: inline;
    }

    .metric-strip,
    .scan-meta,
    .scan-meta-quad,
    .framework-grid {
        grid-template-columns: 1fr;
    }

    .cta-band,
    .results-header {
        align-items: stretch;
        flex-direction: column;
    }

    .info-card {
        min-height: auto;
    }

    .theory-topic {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .topic-number {
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 2rem;
    }

    .theory-topic h3 {
        padding-right: 48px;
    }
}

/* =========================================
   ANIMATIONS & TRANSITIONS
   ========================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.is-visible {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }


@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeArea {
    to { opacity: 1; }
}

.rs-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

.area {
    opacity: 0;
    animation: fadeArea 1.5s ease-out forwards 1.2s;
}


@keyframes rowEnter {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

tbody tr:not(.empty-row) {
    opacity: 0;
    animation: rowEnter 0.4s ease-out forwards;
}
/* =========================================
   ML PROBABILITY HIGHLIGHTS
   ========================================= */
.prob-score {
    font-weight: 900;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.prob-high {
    color: #35c6a5;
    text-shadow: 0 0 12px rgba(53, 198, 165, 0.4); /* Glow effect for high conviction */
}

.prob-mid {
    color: #f6b95b;
}

.prob-low {
    color: #ff6b7a;
    opacity: 0.8;
}