/* =========================================
   SHARED PRODUCT PAGE SHELL
   Shared across Known Systems & KNOX
   ========================================= */

:root {
  --color-pure-black: #000000;
  --color-soft-white: #E1E4E6;
  --color-cool-light-gray: #B6BCC2;
  --color-pale-aqua: #A8D0CF;
  --color-steel-gray: #A6AEB2;
  --color-muted-cyan: #68A1A1;
  --color-dark-teal: #2B5B5D;
  --color-slate-teal: #51686A;

  --font-display: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono: 'Geist Mono', 'Share Tech Mono', monospace;
  --font-editorial: 'Lora', 'Playfair Display', serif;
}

body {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(168, 208, 207, 0.4) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 45%
    ),
    linear-gradient(
      90deg,
      var(--color-soft-white) 0%,
      var(--color-cool-light-gray) 50%,
      var(--color-pale-aqua) 100%
    );

  color: var(--color-dark-teal);
  font-family: var(--font-body);
}
/* The shared container constraint */
.shared-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding-top: 160px; /* Space for fixed nav */
}

/* =========================================
   SHARED HERO COMPOSITION
   ========================================= */

.shared-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px; /* Reduced to pull telemetry strip closer */
}

.sh-copy {
    display: flex;
    flex-direction: column;
}

.sh-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--ks-cyan, #68A1A1); /* Fallback */
    margin-bottom: 24px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.sh-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--ks-black, #000);
    line-height: 1.1;
    margin-bottom: 16px;
}

.sh-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--ks-teal, #2B5B5D);
    line-height: 1.1;
    margin-bottom: 32px;
}

.sh-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ks-teal, #2B5B5D);
    margin-bottom: 48px;
    max-width: 500px;
}

.sh-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* 
   Shared Hero Visual (Right Side)
   The visual sits on the right, not inside a standard card.
   We use a subtle background glow/blur.
*/
.sh-visual-container {
    position: relative;
    height: 600px; /* Fixed height to create a cinematic stage */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push status panel to bottom */
    align-items: flex-end; /* Push status panel to right */
    background: radial-gradient(circle at center, rgba(168,208,207,.1) 0%, transparent 70%);
}

.sh-visual-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.sh-status-panel {
    background: rgba(255,255,255,.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(168,208,207,.3);
    border-radius: 12px;
    padding: 32px;
    width: 280px;
    position: relative;
    z-index: 2; /* Sit above the visual object */
    box-shadow: 0 40px 80px rgba(43,91,93,.05);
}

.shp-header {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--ks-slate);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ks-steel);
    display: flex;
    align-items: center;
    gap: 8px;
}

.shp-metric {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.shp-metric:last-child {
    margin-bottom: 0;
}

.shp-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ks-black);
    line-height: 1;
    margin-bottom: 8px;
}

.shp-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: var(--ks-teal);
    text-transform: uppercase;
}

/* =========================================
   SHARED TELEMETRY STRIP
   ========================================= */

.shared-telemetry {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--ks-steel);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 160px;
    box-shadow: 0 20px 40px rgba(43,91,93,.05);
    overflow: hidden; /* Ensure borders are respected */
}

.st-module {
    padding: 32px 40px;
    border-right: 1px solid var(--ks-steel);
    display: flex;
    align-items: center;
    gap: 16px;
}

.st-module:last-child {
    border-right: none;
}

.st-indicator {
    color: var(--ks-cyan);
    font-size: 20px;
}

.st-data {
    display: flex;
    flex-direction: column;
}

.st-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ks-black);
    margin-bottom: 4px;
}

.st-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: var(--ks-slate);
    text-transform: uppercase;
    line-height: 1.4;
}

/* =========================================
   SHARED MODULE 05: FROSTED PANELS
   ========================================= */

.shared-panel {
    background: rgba(225,228,230,.4); /* #E1E4E6 with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--ks-steel); /* #B6BCC2 */
    border-radius: 16px;
    padding: 80px;
    margin-bottom: 160px;
    position: relative;
    box-shadow: 0 40px 80px rgba(43,91,93,.05);
}

.sp-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}

.sp-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--ks-cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sp-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--ks-black);
    line-height: 1.1;
}

.sp-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: var(--ks-teal);
    line-height: 1.6;
    margin-top: 24px;
    max-width: 600px;
}

/* =========================================
   SHARED MODULE 06: SYSTEM VISUALIZATION
   ========================================= */

.shared-system-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 160px;
}

.ssf-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.ssf-item {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--ks-slate);
    background: var(--ks-white);
    border: 1px solid var(--ks-steel);
    padding: 16px 24px;
    border-radius: 8px;
    position: relative;
}

/* Connectors for left column */
.ssf-col.left .ssf-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--ks-cyan);
}

.ssf-col.left .ssf-item {
    text-align: right;
}

/* Connectors for right column */
.ssf-col.right .ssf-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--ks-cyan);
}

.ssf-col.right .ssf-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ssf-center {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ssf-object {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at top left, rgba(255,255,255,1), rgba(168,208,207,.3));
    border: 1px solid var(--ks-cyan);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 40px 80px rgba(43,91,93,.1);
    font-family: 'Satoshi', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--ks-black);
    margin: 32px 0;
    position: relative;
}

/* Arrows pointing to the center object */
.ssf-arrow-left, .ssf-arrow-right {
    font-size: 24px;
    color: var(--ks-cyan);
}

.ssf-object-label {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--ks-teal);
    text-transform: uppercase;
}

/* =========================================
   SHARED MODULE 07: WORKFLOW TIMELINE
   ========================================= */

.shared-workflow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 160px;
}

.sw-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sw-stage-num {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--ks-slate);
    margin-bottom: 8px;
}

.sw-stage-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--ks-black);
    text-transform: uppercase;
}

.sw-stage-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--ks-teal);
    margin-top: 8px;
}

.sw-connector {
    font-size: 24px;
    color: var(--ks-cyan);
    margin: 32px 0;
}

/* =========================================
   SHARED MODULE 08: EVIDENCE GRID
   ========================================= */

.shared-evidence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ks-white);
    border: 1px solid var(--ks-steel);
    border-radius: 16px;
    margin-bottom: 160px;
    overflow: hidden;
}

.se-col {
    padding: 48px;
    border-right: 1px solid var(--ks-steel);
    display: flex;
    flex-direction: column;
}

.se-col:last-child {
    border-right: none;
}

.se-header {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--ks-slate);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.se-data-block {
    margin-bottom: 40px;
}

.se-data-block:last-of-type {
    margin-bottom: auto; /* Push CTA to bottom */
}

.se-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ks-black);
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
}

.se-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--ks-teal);
    display: block;
    text-transform: uppercase;
}

.se-cta {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--ks-cyan);
    text-decoration: none;
    margin-top: 40px;
    display: inline-block;
}

.se-cta:hover {
    color: var(--ks-teal);
}

/* =========================================
   SHARED MODULE 09: CINEMATIC CTA
   ========================================= */

.shared-cinematic-cta {
    text-align: center;
    margin-bottom: 160px;
    padding: 120px 0;
    border-top: 1px solid var(--ks-steel);
    position: relative;
}

.scc-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--ks-black);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.scc-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: var(--ks-teal);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scc-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* =========================================
   RESPONSIVE LAYOUTS (TABLET & MOBILE)
   ========================================= */

@media (max-width: 1024px) {
    /* Hero */
    .shared-hero {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .sh-title, .sh-subtitle {
        font-size: 3.5rem;
    }

    /* Telemetry */
    .shared-telemetry {
        grid-template-columns: repeat(2, 1fr);
    }
    .st-module:nth-child(2) {
        border-right: none;
    }
    .st-module:nth-child(3),
    .st-module:nth-child(4) {
        border-top: 1px solid var(--ks-steel);
    }

    /* System Flow */
    .shared-system-flow {
        flex-direction: column;
    }
    .ssf-arrow-left {
        transform: rotate(90deg);
    }
    .ssf-arrow-right {
        transform: rotate(90deg);
    }
    
    /* Evidence Grid */
    .shared-evidence {
        grid-template-columns: 1fr;
    }
    .se-col {
        border-right: none;
        border-bottom: 1px solid var(--ks-steel);
    }
    .se-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    /* General Shell */
    .shared-shell {
        padding-top: 120px;
    }

    /* Hero */
    .sh-title, .sh-subtitle {
        font-size: 2.5rem;
    }
    .sh-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-solid, .btn-ghost {
        text-align: center;
    }
    .sh-visual-container {
        height: 450px;
    }
    .sh-status-panel {
        width: 100%;
        max-width: 320px;
    }

    /* Telemetry */
    .shared-telemetry {
        grid-template-columns: 1fr;
    }
    .st-module {
        border-right: none;
        border-bottom: 1px solid var(--ks-steel);
    }
    .st-module:last-child {
        border-bottom: none;
    }

    /* Frosted Panels */
    .shared-panel {
        padding: 40px 24px;
        margin-bottom: 80px;
    }
    .sp-title {
        font-size: 2rem;
    }

    /* System Flow */
    .ssf-col, .ssf-col.left .ssf-item, .ssf-col.right .ssf-item {
        text-align: center;
        justify-content: center;
    }
    .ssf-col.left .ssf-item::after, .ssf-col.right .ssf-item::before {
        display: none;
    }

    /* Workflow Timeline */
    .shared-workflow {
        margin-bottom: 80px;
    }

    /* Evidence Grid */
    .shared-evidence {
        margin-bottom: 80px;
    }
    .se-col {
        padding: 32px 24px;
    }

    /* Cinematic CTA */
    .shared-cinematic-cta {
        padding: 80px 0;
        margin-bottom: 80px;
    }
    .scc-title {
        font-size: 2.5rem;
    }
    .scc-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
    }
}

/* =========================================
   ADVANCED OPERATIONAL UI (PHASE 2)
   ========================================= */

/* 1. Live System Status (Hero) */
.shared-live-status {
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
    color: var(--ks-slate);
    margin-bottom: 24px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(225, 228, 230, 0.1);
    border: 1px solid var(--ks-steel);
    border-radius: 4px;
}
.shared-live-status span {
    display: inline-block;
    margin-right: 24px;
}
.shared-live-status span:last-child {
    margin-right: 0;
}
.sls-label {
    opacity: 0.6;
    margin-right: 8px;
}
.sls-value {
    color: var(--ks-white);
}

/* 2. Event Stream (Ticker) */
.shared-event-stream {
    width: 100%;
    overflow: hidden;
    background: var(--ks-black);
    border-top: 1px solid #1A1F20;
    border-bottom: 1px solid #1A1F20;
    padding: 12px 0;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: #4A5557;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.ses-track {
    display: flex;
    animation: scroll-stream 30s linear infinite;
}
.ses-event {
    margin-right: 48px;
    display: inline-flex;
    align-items: center;
}
.ses-time {
    color: var(--ks-slate);
    margin-right: 12px;
}
.ses-action {
    color: var(--ks-cyan);
}
@keyframes scroll-stream {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 3. Interactive Visualization (Hover Flow) */
.shared-interactive-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--ks-steel);
}
.sif-node {
    position: relative;
    padding: 24px;
    background: var(--ks-white);
    border: 1px solid var(--ks-steel);
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: crosshair;
    transition: all 0.3s ease;
}
.sif-node:hover {
    border-color: var(--ks-cyan);
    box-shadow: 0 0 20px rgba(104, 161, 161, 0.2);
}
.sif-tooltip {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ks-black);
    color: var(--ks-white);
    padding: 16px;
    width: 200px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}
.sif-node:hover .sif-tooltip {
    opacity: 1;
    visibility: visible;
    top: 110%;
}
.sif-tt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.sif-tt-row:last-child {
    margin-bottom: 0;
}
.sif-tt-label {
    color: var(--ks-slate);
}

/* 4. Scroll-Driven Transformation */
.shared-sticky-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 48px;
}
.sss-visual-col {
    position: relative;
}
.sss-sticky-visual {
    position: sticky;
    top: 120px;
    height: 400px;
    background: var(--ks-white);
    border: 1px solid var(--ks-steel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geist Mono', monospace;
    color: var(--ks-slate);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.sss-content-col {
    padding-bottom: 40vh;
}
.sss-stage {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.sss-stage:hover, .sss-stage.active {
    opacity: 1;
}
.sss-stage-num {
    font-family: 'Geist Mono', monospace;
    color: var(--ks-cyan);
    margin-bottom: 16px;
}
.sss-stage-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* 5. Inside-The-System Architecture */
.shared-internal-arch {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
}
.sia-node {
    padding: 16px 32px;
    background: var(--ks-white);
    border: 1px solid var(--ks-steel);
    margin: 16px 0;
}
.sia-node.core {
    background: var(--ks-black);
    color: var(--ks-white);
    border-color: var(--ks-cyan);
    padding: 24px 48px;
    font-weight: bold;
}
.sia-arrow {
    color: var(--ks-slate);
}

/* 6. Technical Specification Drawer */
.shared-spec-drawer {
    max-width: 800px;
    margin: 80px auto;
    border-top: 1px solid var(--ks-steel);
}
.ssd-details {
    border-bottom: 1px solid var(--ks-steel);
}
.ssd-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    color: var(--ks-slate);
    cursor: pointer;
    list-style: none;
}
.ssd-summary::-webkit-details-marker {
    display: none;
}
.ssd-summary:hover {
    color: var(--ks-black);
}
.ssd-content {
    padding: 0 0 40px 0;
}
.ssd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
}
.ssd-row {
    display: flex;
    border-bottom: 1px dotted var(--ks-steel);
    padding-bottom: 8px;
}
.ssd-label {
    width: 140px;
    color: var(--ks-slate);
}
.ssd-val {
    color: var(--ks-black);
}

/* 7. Metrics / Evidence Grid */
.shared-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--ks-steel);
    border: 1px solid var(--ks-steel);
    margin: 80px auto;
}
.smg-metric {
    background: var(--ks-white);
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.knox-environment .smg-metric {
    background: #111;
}
.smg-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}
.knox-environment .smg-value {
    color: var(--ks-cyan);
}
.smg-label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ks-slate);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* 7.5 Universal Metric Strip */
.metric-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    margin: 64px auto;
    text-align: left;
    max-width: 1000px;
}
.ms-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-pure-black);
}
.knox-environment .ms-value {
    color: var(--color-muted-cyan);
}
.ms-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-slate-teal);
    text-transform: uppercase;
    letter-spacing: .15em;
    display: block;
    margin-top: 8px;
}

/* 8. Integrations Ecosystem */
.shared-integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 64px auto;
    border: 1px solid var(--color-steel-gray);
    background: rgba(225,228,230,.64);
    backdrop-filter: blur(28px);
    max-width: 800px;
}
.sig-item {
    border-bottom: 1px solid var(--color-steel-gray);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-dark-teal);
    transition: all 0.2s ease;
}
.sig-item:nth-child(odd) {
    border-right: 1px solid var(--color-steel-gray);
}
.sig-item:nth-last-child(1), .sig-item:nth-last-child(2) {
    border-bottom: none;
}
.sig-status {
    color: var(--color-muted-cyan);
}
.knox-environment .sig-item {
    border-color: rgba(255,255,255,0.1);
}
.knox-environment .sig-item:hover {
    color: var(--ks-white);
    border-color: var(--ks-cyan);
}

/* 9. Cinematic Final CTA */
.shared-final-cta {
    margin: 160px auto 80px;
    text-align: center;
    padding: 120px 40px;
    background: var(--ks-black);
    color: var(--ks-white);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.sfc-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    color: var(--ks-cyan);
    margin-bottom: 24px;
    display: block;
}
.sfc-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 48px;
}
.knox-environment .shared-final-cta {
    background: radial-gradient(circle at center, rgba(104,161,161,0.1) 0%, #111 70%);
}

/* 10. Mobile Composition */
@media (max-width: 900px) {
    .shared-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sh-visual-container {
        height: 400px;
    }
    .shared-telemetry {
        flex-direction: column;
    }
    .st-module {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .knox-environment .st-module {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .shared-sticky-scroll {
        grid-template-columns: 1fr;
    }
    .sss-visual-col {
        position: relative;
        top: 0;
        height: auto;
        padding-top: 40px;
    }
    .shared-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    .shared-integration-grid {
        grid-template-columns: 1fr;
    }
    .sig-item:nth-child(odd) {
        border-right: none;
    }
    .sig-item {
        border-bottom: 1px solid var(--color-steel-gray) !important;
    }
    .sfc-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 600px) {
    .shared-metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* 11. Knox Live Proof & Architecture */
.knox-demo-container {
    max-width: 1000px;
    margin: 120px auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}
.knox-demo-triggers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.kdt-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-slate-teal);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 16px;
}
.btn-demo-trigger {
    background: transparent;
    border: 1px solid var(--color-steel-gray);
    padding: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-demo-trigger:hover:not(:disabled) {
    border-color: var(--color-pure-black);
    background: rgba(255,255,255,0.5);
}
.btn-demo-trigger:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-demo-type {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-muted-cyan);
    font-weight: 700;
}
.btn-demo-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-pure-black);
}

.knox-live-proof {
    background: var(--color-pure-black);
    border: 1px solid var(--color-steel-gray);
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.klp-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.klp-eyebrow {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-muted-cyan);
    margin-bottom: 24px;
    display: block;
}
.klp-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
}
.klp-status-grid > div {
    display: flex;
    justify-content: space-between;
}
.klp-label { color: var(--color-cool-light-gray); }
.klp-val { color: var(--color-soft-white); }
.status-color { color: var(--color-muted-cyan); }

.klp-metrics-bar {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-cool-light-gray);
    margin-bottom: 24px;
}
.klp-event-stream {
    background: #111;
    padding: 24px;
    border-radius: 4px;
    height: 300px;
    overflow-y: hidden;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-cool-light-gray);
    display: flex;
    flex-direction: column-reverse;
}
.demo-event {
    padding: 4px 0;
    opacity: 0.8;
}
.demo-event:first-child {
    opacity: 1;
    color: var(--color-soft-white);
}

/* Architecture Visual */
.knox-architecture-diagram {
    max-width: 800px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-pure-black);
    letter-spacing: .1em;
}
.arch-node {
    border: 1px solid var(--color-steel-gray);
    padding: 16px 32px;
    background: rgba(225,228,230,.64);
    backdrop-filter: blur(28px);
    transition: all 0.3s ease;
    text-align: center;
}
.arch-line-vertical {
    width: 1px;
    height: 32px;
    background: var(--color-steel-gray);
    transition: all 0.3s ease;
}
.arch-branch {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--color-steel-gray);
    padding-top: 32px;
    position: relative;
    margin-top: 32px;
}
.arch-branch::before {
    content: '';
    position: absolute;
    top: -33px;
    left: 50%;
    width: 1px;
    height: 32px;
    background: var(--color-steel-gray);
}
.arch-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.arch-node.active {
    background: var(--color-muted-cyan);
    color: var(--color-soft-white);
    border-color: var(--color-muted-cyan);
    box-shadow: 0 0 20px rgba(104,161,161,0.4);
}
.arch-line-vertical.active {
    background: var(--color-muted-cyan);
}
.arch-branch.active-branch {
    border-top-color: var(--color-muted-cyan);
}
.arch-branch.active-branch::before {
    background: var(--color-muted-cyan);
}
