/* =====================================================
   SENTINEL23™ SIMULATOR V2
   Powered by VEDAHAM AI
   Future Emergency Command Experience
===================================================== */

:root {
    --sim-ink: #02030a;
    --sim-deep: #05060f;
    --sim-surface: rgba(7, 11, 24, 0.82);
    --sim-surface-strong: rgba(8, 16, 34, 0.95);
    --sim-glass: rgba(255, 255, 255, 0.055);
    --sim-border: rgba(255, 255, 255, 0.11);
    --sim-blue: #1469ff;
    --sim-cyan: #00c8ff;
    --sim-red: #ff1a2e;
    --sim-green: #00ff9d;
    --sim-amber: #ffb800;
    --sim-text: #dce8ff;
    --sim-muted: #3d5080;
    --sim-soft: rgba(220, 232, 255, 0.72);
    --sim-dim: rgba(220, 232, 255, 0.42);
    --sim-mono: "Share Tech Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 200, 255, 0.12), transparent 32%),
        radial-gradient(circle at 78% 16%, rgba(255, 26, 46, 0.08), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(20, 105, 255, 0.12), transparent 38%),
        var(--sim-ink);
    color: var(--sim-text);
    overflow-x: hidden;
}

body,
button,
a {
    font-family: "Space Grotesk", sans-serif;
}

button {
    border: 0;
    cursor: pointer;
}

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

/* Background */
.sim-bg-grid {
    position: fixed;
    inset: 0;
    z-index: -6;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.055) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black 0%, black 48%, transparent 100%);
}

.sim-bg-glow {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(circle at 50% 42%, rgba(20, 105, 255, 0.10), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(0, 255, 157, 0.045), transparent 28%);
    pointer-events: none;
}

.sim-scanlines {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
    opacity: 0.14;
    background: linear-gradient(
        to bottom,
        transparent,
        transparent 48%,
        rgba(0, 200, 255, 0.08),
        transparent 52%,
        transparent
    );
    background-size: 100% 9px;
}

/* Topbar */
.sim-topbar {
    min-height: 86px;
    padding: 18px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(2, 3, 10, 0.74);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(20, 105, 255, 0.16);
}

.sim-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.sim-brand-main {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: 0.24em;
    color: var(--sim-blue);
}

.sim-brand-sub {
    margin-top: 6px;
    color: rgba(220, 232, 255, 0.68);
    font-family: var(--sim-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
}

.sim-top-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sim-soft);
    font-family: var(--sim-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.status-light {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sim-green);
    box-shadow: 0 0 18px var(--sim-green);
    animation: statusPulse 1.4s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.82);
    }
}

.sim-home-link {
    color: var(--sim-muted);
    font-family: var(--sim-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.sim-home-link:hover {
    color: var(--sim-cyan);
}

/* Shell */
.sim-shell {
    width: min(1500px, 92vw);
    margin: 0 auto;
    padding: 68px 0 100px;
}

/* Hero */
.sim-hero {
    min-height: 62vh;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 42px;
    align-items: center;
}

.sim-kicker {
    color: var(--sim-cyan);
    font-family: var(--sim-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sim-hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 8.8vw, 8.8rem);
    line-height: 0.9;
    letter-spacing: 0.015em;
    color: var(--sim-text);
    text-transform: uppercase;
    text-shadow: 0 0 48px rgba(20, 105, 255, 0.14);
}

.sim-hero-copy p:not(.sim-kicker) {
    max-width: 820px;
    margin-top: 28px;
    color: var(--sim-soft);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    line-height: 1.85;
}

.sim-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

/* Buttons */
.sim-btn-primary,
.sim-btn-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.sim-btn-primary {
    color: white;
    background: var(--sim-blue);
    box-shadow: 0 0 36px rgba(20, 105, 255, 0.28);
}

.sim-btn-primary:hover {
    transform: translateY(-2px);
    background: #0f55d6;
    box-shadow: 0 10px 40px rgba(20, 105, 255, 0.42);
}

.sim-btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.52;
    filter: grayscale(1);
}

.sim-btn-secondary {
    color: var(--sim-text);
    border: 1px solid rgba(220, 232, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.sim-btn-secondary:hover {
    color: var(--sim-cyan);
    border-color: rgba(0, 200, 255, 0.42);
    transform: translateY(-2px);
}

/* Orb */
.sim-hero-orb {
    min-height: 430px;
    position: relative;
    display: grid;
    place-items: center;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 200, 255, 0.20);
    box-shadow: 0 0 48px rgba(0, 200, 255, 0.07);
}

.ring-one {
    width: 380px;
    height: 380px;
    animation: spinOne 18s linear infinite;
}

.ring-two {
    width: 290px;
    height: 290px;
    border-color: rgba(255, 26, 46, 0.16);
    animation: spinTwo 13s linear infinite reverse;
}

.ring-three {
    width: 210px;
    height: 210px;
    border-color: rgba(0, 255, 157, 0.15);
    animation: spinOne 9s linear infinite;
}

.orb-ring::before,
.orb-ring::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sim-cyan);
    box-shadow: 0 0 18px var(--sim-cyan);
}

.orb-ring::before {
    top: -5px;
    left: 50%;
}

.orb-ring::after {
    bottom: -5px;
    right: 50%;
}

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

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

.orb-core {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    background:
        radial-gradient(circle, rgba(0, 200, 255, 0.18), transparent 58%),
        rgba(8, 16, 34, 0.92);
    border: 1px solid rgba(0, 200, 255, 0.32);
    box-shadow:
        0 0 80px rgba(0, 200, 255, 0.15),
        inset 0 0 40px rgba(0, 200, 255, 0.08);
}

.orb-core span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 4.3rem;
    line-height: 0.8;
    color: var(--sim-text);
}

.orb-core small {
    display: block;
    margin-top: -20px;
    color: var(--sim-muted);
    font-family: var(--sim-mono);
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Section Head */
.sim-section-head {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin: 58px 0 24px;
}

.sim-section-head > span {
    color: var(--sim-blue);
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.2rem;
    line-height: 0.85;
}

.sim-section-head p {
    color: var(--sim-cyan);
    font-family: var(--sim-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sim-section-head h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Scenario */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.scenario-card {
    min-height: 208px;
    position: relative;
    overflow: hidden;
    text-align: left;
    color: var(--sim-text);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--sim-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        var(--sim-surface);
    backdrop-filter: blur(22px);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.scenario-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 200, 255, 0.18), transparent 45%),
        radial-gradient(circle at bottom left, rgba(255, 26, 46, 0.10), transparent 42%);
    transition: opacity 0.25s ease;
}

.scenario-card:hover,
.scenario-card.active {
    transform: translateY(-5px);
    border-color: rgba(0, 200, 255, 0.46);
    box-shadow:
        0 36px 100px rgba(0, 200, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scenario-card:hover::before,
.scenario-card.active::before {
    opacity: 1;
}

.scenario-card > * {
    position: relative;
    z-index: 2;
}

.scenario-code {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(0, 200, 255, 0.32);
    border-radius: 999px;
    color: var(--sim-cyan);
    font-family: var(--sim-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin-bottom: 22px;
}

.scenario-card strong {
    display: block;
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.scenario-card small {
    display: block;
    color: var(--sim-soft);
    line-height: 1.55;
    margin-bottom: 16px;
}

.scenario-card em {
    display: block;
    color: var(--sim-muted);
    font-family: var(--sim-mono);
    font-style: normal;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Command Layout */
.command-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.58fr 0.92fr;
    gap: 18px;
}

.command-card {
    border: 1px solid var(--sim-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.024)),
        var(--sim-surface);
    backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 22px;
    box-shadow:
        0 34px 100px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(220, 232, 255, 0.09);
}

.card-head p {
    color: var(--sim-cyan);
    font-family: var(--sim-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.card-head h3 {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.card-head > span {
    color: var(--sim-muted);
    font-family: var(--sim-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Feed */
.feed-list {
    height: 560px;
    overflow-y: auto;
    padding-right: 8px;
}

.feed-list::-webkit-scrollbar {
    width: 5px;
}

.feed-list::-webkit-scrollbar-thumb {
    background: rgba(0, 200, 255, 0.38);
    border-radius: 999px;
}

.feed-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(220, 232, 255, 0.07);
    animation: feedEnter 0.35s ease both;
}

.feed-row span {
    color: var(--sim-cyan);
    font-family: var(--sim-mono);
    font-size: 0.72rem;
}

.feed-row p {
    color: rgba(220, 232, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.45;
}

.feed-row.critical p {
    color: #ffd8dc;
}

.feed-row.success p {
    color: #caffdf;
}

.feed-row.muted span,
.feed-row.muted p {
    color: var(--sim-dim);
}

@keyframes feedEnter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Digital Map */
.digital-map {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(0, 200, 255, 0.16);
    background:
        radial-gradient(circle at 50% 48%, rgba(0, 200, 255, 0.16), transparent 24%),
        linear-gradient(145deg, rgba(3, 12, 26, 0.98), rgba(2, 3, 10, 0.98));
}

.map-raster {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,200,255,0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,255,0.09) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.75;
}

.map-sweep {
    position: absolute;
    inset: -20%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 200, 255, 0.08),
        transparent 18%,
        transparent
    );
    animation: mapSweep 8s linear infinite;
}

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

.sector-label {
    position: absolute;
    z-index: 2;
    color: rgba(220, 232, 255, 0.24);
    font-family: var(--sim-mono);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
}

.sector-a {
    left: 8%;
    top: 12%;
}

.sector-b {
    right: 9%;
    top: 16%;
}

.sector-c {
    left: 10%;
    bottom: 13%;
}

.sector-d {
    right: 10%;
    bottom: 12%;
}

.incident-node {
    position: absolute;
    z-index: 8;
    left: 50%;
    top: 48%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sim-red);
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0.18;
    box-shadow: 0 0 30px var(--sim-red);
    transition: 0.4s ease;
}

.incident-node span {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--sim-red);
    opacity: 0;
}

.incident-node.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.incident-node.active span {
    animation: incidentPulse 1.45s ease-out infinite;
}

@keyframes incidentPulse {
    0% {
        transform: scale(0.5);
        opacity: 0.85;
    }

    100% {
        transform: scale(6.2);
        opacity: 0;
    }
}

.unit-node {
    position: absolute;
    z-index: 9;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(220, 232, 255, 0.08);
    border: 1px solid rgba(220, 232, 255, 0.14);
    font-family: var(--sim-mono);
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    opacity: 0.56;
    transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.unit-node.active {
    opacity: 1;
    transform: scale(1.08);
}

.police-node {
    right: 16%;
    top: 15%;
}

.police-node.active {
    background: rgba(20, 105, 255, 0.24);
    box-shadow: 0 0 30px rgba(20, 105, 255, 0.48);
}

.ambulance-node {
    left: 13%;
    bottom: 18%;
}

.ambulance-node.active {
    background: rgba(0, 255, 157, 0.20);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.42);
}

.hospital-node {
    right: 12%;
    bottom: 16%;
}

.hospital-node.active {
    background: rgba(255, 184, 0, 0.20);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.34);
}

.fire-node {
    left: 19%;
    top: 16%;
}

.fire-node.active {
    background: rgba(255, 26, 46, 0.22);
    box-shadow: 0 0 30px rgba(255, 26, 46, 0.40);
}

.route-line {
    position: absolute;
    z-index: 6;
    height: 3px;
    opacity: 0;
    border-radius: 999px;
    transform-origin: left center;
    filter: drop-shadow(0 0 10px currentColor);
}

.route-line.active {
    opacity: 1;
    animation: routeGlow 0.9s ease-in-out infinite alternate;
}

.route-police {
    right: 21%;
    top: 25%;
    width: 35%;
    color: var(--sim-blue);
    transform: rotate(151deg);
    background: linear-gradient(90deg, transparent, var(--sim-blue));
}

.route-ambulance {
    left: 18%;
    bottom: 27%;
    width: 39%;
    color: var(--sim-green);
    transform: rotate(-27deg);
    background: linear-gradient(90deg, transparent, var(--sim-green));
}

.route-hospital {
    right: 18%;
    bottom: 25%;
    width: 31%;
    color: var(--sim-amber);
    transform: rotate(204deg);
    background: linear-gradient(90deg, transparent, var(--sim-amber));
}

.route-fire {
    left: 23%;
    top: 25%;
    width: 31%;
    color: var(--sim-red);
    transform: rotate(25deg);
    background: linear-gradient(90deg, transparent, var(--sim-red));
}

@keyframes routeGlow {
    from {
        box-shadow: 0 0 8px currentColor;
    }

    to {
        box-shadow: 0 0 24px currentColor;
    }
}

.map-lock {
    position: absolute;
    z-index: 12;
    left: 50%;
    top: calc(48% + 30px);
    transform: translateX(-50%);
    opacity: 0;
    color: rgba(220, 232, 255, 0.74);
    font-family: var(--sim-mono);
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    transition: opacity 0.35s ease;
}

.map-lock.active {
    opacity: 1;
}

.control-strip {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

/* AI */
.ai-score-ring {
    width: 166px;
    height: 166px;
    margin: 24px auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background:
        radial-gradient(circle, rgba(0,200,255,0.14), transparent 58%),
        conic-gradient(from 0deg, var(--sim-blue), var(--sim-red), var(--sim-green), var(--sim-blue));
    animation: aiSpin 7s linear infinite;
}

.ai-score-ring::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: var(--sim-surface-strong);
}

.ai-score-inner {
    position: relative;
    text-align: center;
}

.ai-score-inner strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 4.3rem;
    line-height: 0.8;
}

.ai-score-inner span {
    color: var(--sim-muted);
    font-family: var(--sim-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.intel-stack {
    display: grid;
    gap: 12px;
}

.intel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(220,232,255,0.07);
}

.intel-row span {
    color: var(--sim-dim);
    font-size: 0.8rem;
}

.intel-row strong {
    color: white;
    text-align: right;
    font-size: 0.84rem;
}

/* Responders */
.responder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.responder-card {
    min-height: 210px;
    padding: 26px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sim-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        var(--sim-surface);
    box-shadow:
        0 30px 90px rgba(0,0,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.responder-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -62% -30%;
    height: 90%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.18), transparent 58%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.responder-card.active {
    transform: translateY(-6px);
    border-color: rgba(0, 200, 255, 0.42);
    box-shadow:
        0 34px 100px rgba(0, 200, 255, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.responder-card.active::after {
    opacity: 1;
}

.responder-card span,
.responder-card strong,
.responder-card p,
.responder-card small {
    position: relative;
    z-index: 2;
}

.responder-card span {
    display: block;
    color: var(--sim-cyan);
    font-family: var(--sim-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.responder-card strong {
    display: block;
    margin: 20px 0 10px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 4.2rem;
    line-height: 1;
}

.responder-card p {
    color: var(--sim-soft);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.responder-card small {
    color: var(--sim-muted);
    font-family: var(--sim-mono);
    font-size: 0.66rem;
}

/* Outcome */
.outcome-section {
    margin-top: 70px;
    padding: clamp(34px, 5vw, 70px);
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(0, 200, 255, 0.22);
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 200, 255, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        rgba(5, 6, 15, 0.88);
    box-shadow:
        0 40px 120px rgba(0,0,0,0.48),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

.outcome-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 6.2vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.outcome-grid div {
    padding: 28px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(220,232,255,0.08);
}

.outcome-grid strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    color: var(--sim-cyan);
    line-height: 1;
}

.outcome-grid span {
    display: block;
    margin-top: 10px;
    color: var(--sim-soft);
    font-size: 0.86rem;
}

.investor-line {
    max-width: 860px;
    margin: 44px auto 32px;
    color: white;
    font-size: clamp(1.4rem, 2.7vw, 2.5rem);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.outcome-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1180px) {
    .sim-hero,
    .command-layout {
        grid-template-columns: 1fr;
    }

    .sim-hero-orb {
        min-height: 340px;
    }

    .scenario-grid,
    .responder-grid,
    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feed-list {
        height: 300px;
    }
}

@media (max-width: 740px) {
    .sim-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .sim-top-status {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .sim-shell {
        width: min(94vw, 1500px);
        padding: 42px 0 78px;
    }

    .sim-hero {
        min-height: auto;
    }

    .sim-hero h1 {
        font-size: 3.55rem;
    }

    .sim-hero-actions,
    .control-strip,
    .outcome-actions {
        flex-direction: column;
    }

    .sim-btn-primary,
    .sim-btn-secondary {
        width: 100%;
    }

    .scenario-grid,
    .responder-grid,
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .digital-map {
        min-height: 440px;
    }

    .unit-node {
        width: 46px;
        height: 46px;
        font-size: 0.58rem;
    }

    .sim-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .ring-one {
        width: 310px;
        height: 310px;
    }

    .ring-two {
        width: 235px;
        height: 235px;
    }

    .ring-three {
        width: 170px;
        height: 170px;
    }
}
