/* ==========================================================================
   DIVIDERS
   ========================================================================== */
.panel-break {
  width: 100%;
  height: 50px;
  margin: 0 auto -10px auto;
  background: repeating-linear-gradient(-10deg,#2b3955 0 6px,#20263b 7px 13px,#4da3ff11 14px 23px);
  /* Faked “dots” with SVG overlay */
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 160 40' xmlns='http://www.w3.org/2000/svg'><circle cx='30' cy='22' r='6' fill='black'/><circle cx='82' cy='19' r='2' fill='black'/><circle cx='120' cy='16' r='3' fill='black'/></svg>");
  mask-size: 260px 50px; 
  mask-repeat: no-repeat;
}

/* Right-aligned variant */
.panel-break--right {
    width: 260px; /* match mask-size for clean edges */
    height: 50px;
    margin: 0 0 -10px auto; /* push to right */
    background: repeating-linear-gradient(-10deg,#2b3955 0 6px,#20263b 7px 13px,#4da3ff11 14px 23px);
    mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 160 40' xmlns='http://www.w3.org/2000/svg'><circle cx='30' cy='22' r='6' fill='black'/><circle cx='82' cy='19' r='2' fill='black'/><circle cx='120' cy='16' r='3' fill='black'/></svg>");
    mask-size: 260px 50px; mask-repeat: no-repeat; mask-position: right top;
}

.asteroid-belt-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 28px 0 8px 0;
  pointer-events:none;
}
.asteroid {
  display: inline-block;
  width: 16px; height: 16px;
  background: #4da3ff2a url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><ellipse cx="8" cy="8" rx="8" ry="7" fill="gray"/><ellipse cx="5" cy="5" rx="2" ry="1" fill="#ccc"/><ellipse cx="10" cy="12" rx="2" ry="1.5" fill="#bbb"/></svg>');
  border-radius: 50%;
  transform: rotate(calc(12deg * var(--i, 1))) scale(calc(0.7 + 0.5 * var(--i, 1)));
  opacity: .82;
  filter: grayscale(0.2) drop-shadow(0 1px 6px #20263b77);
}
/* Add some variation */
.asteroid:nth-child(1) { --i: .2 }
.asteroid:nth-child(2) { --i: .7 }
.asteroid:nth-child(3) { --i: 1 }
.asteroid:nth-child(4) { --i: 1.3 }
.asteroid:nth-child(5) { --i: 0.4 }
.asteroid:nth-child(6) { --i: 1.8 }

/* ==========================================================================
   SOLID TEXT GRAPHIC HEADERS (TOTAL VARIETY PACK)
   ========================================================================== */
/* --------------------------------------------------------------------------
   VARIANT 2: Corner-Bracket Matrix (The Scripted Process)
   -------------------------------------------------------------------------- */
.tech-matrix-header {
    text-align: center;
    max-width: 600px;
}
.matrix-grid-lines {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: #4da3ff;
    margin-bottom: 12px;
}
.matrix-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
}
.tech-title-matrix {
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 800;
}
.matrix-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.matrix-corner.top-left     { top: 0; left: 0; border-right: none; border-bottom: none; }
.matrix-corner.top-right    { top: 0; right: 0; border-left: none; border-bottom: none; }
.matrix-corner.bottom-left  { bottom: 0; left: 0; border-right: none; border-top: none; }
.matrix-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.tech-matrix-header:hover .matrix-corner {
    width: 16px;
    height: 16px;
    border-color: #4da3ff;
}

/* --------------------------------------------------------------------------
   VARIANT 3: Geometric Crosshair Strip (Celestial Systems)
   -------------------------------------------------------------------------- */
.tech-crosshair-header .crosshair-badge {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}
.crosshair-axis-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.tech-title-crosshair {
    font-size: 2.25rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
}
.axis-line {
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
}
.left-axis { background: linear-gradient(90deg, transparent, rgba(77, 163, 255, 0.4)); }
.right-axis { background: linear-gradient(90deg, rgba(77, 163, 255, 0.4), transparent); }

.axis-line::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 9px;
    background: #4da3ff;
}
.left-axis::after  { right: 0; }
.right-axis::after { left: 0; }

@media (max-width: 768px) {
    .tech-title-crosshair { font-size: 1.5rem; letter-spacing: 0.08em; white-space: normal; }
    .axis-line { display: none; }
}
/* ==========================================================================
   SOLAR SYSTEM HERO
   ========================================================================== */

/* Enhancing standard paragraph styles for hero columns */
.hero-video__content .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Image Showcase Upgrades */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
}

/* Ambient glow beneath the main illustration hero image */
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 30px;
    background: radial-gradient(circle, rgba(77, 163, 255, 0.25) 0%, rgba(167, 139, 250, 0.15) 50%, transparent 100%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.hero-image {
    max-height: 380px;
    object-fit: contain;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image-wrapper:hover .hero-image {
    transform: translateY(-6px) scale(1.02);
}

/* Handle layout spacing cleanly for standard mobile sizes */
@media (max-width: 991px) {
    .hero-video {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 100px;
    }
    .hero-video__content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-scroll {
        display: none; /* Hide scroll indicator if viewport height is small */
    }
}

@media (max-width: 576px) {
    .hero-image {
        max-height: 240px;
    }
}

/* ========================================================================== 
   HIGH-DRAMA HERO ROCKET & HYPERSPEED ANIMATION STYLES 
   ========================================================================== */

/* Main Viewport Container configured to perfectly center the asset */
.hero-space-viewport {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Clips the hyper-speed streaks flawlessly */
}

/* --- Hyperspeed Streak Effects --- */
.speed-streaks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* Long Cinematic Warp Streaks */
.streak {
    position: absolute;
    width: 2px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: rotate(-25deg); /* Aligned to launch trajectory */
    opacity: 0;
}

.streak:nth-child(1) { top: -10%; left: 25%; animation: warp-speed 1.0s linear infinite; }
.streak:nth-child(2) { top: 5%; left: 80%; animation: warp-speed 1.4s linear infinite 0.3s; }
.streak:nth-child(3) { top: 35%; left: 10%; animation: warp-speed 1.2s linear infinite 0.6s; }
.streak:nth-child(4) { top: -5%; left: 55%; animation: warp-speed 0.9s linear infinite 0.15s; }


/* --- Rocket Container (Angled Flight Positioning) --- */
.rocket-container {
    position: relative;
    width: 120px;
    height: 240px;
    transform-style: preserve-3d;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Dramatic tilt + hovering physics combo */
    animation: dramatic-flight 3.5s ease-in-out infinite;
}

/* --- Rocket Fuselage & High-Contrast Shading --- */
.rocket-body {
    position: relative;
    width: 64px;
    height: 145px;
    /* Sharp cybertech metallic contrast split */
    background: linear-gradient(105deg, #ffffff 45%, #cbd5e1 50%, #94a3b8 100%);
    border-radius: 50% 50% 25% 25% / 60% 60% 20% 20%;
    margin: 0 auto;
    box-shadow: 
        -15px 15px 40px rgba(0, 0, 0, 0.5),
        inset -3px -3px 10px rgba(0, 0, 0, 0.3),
        inset 4px 4px 8px rgba(255, 255, 255, 0.8);
}

/* Cinematic Nosecone */
.rocket-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background: linear-gradient(105deg, #ff4500 0%, #da1b1b 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.4);
}

/* Hyper-Reflective Metallic Specular Line */
.rocket-hull-shine {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 4px;
    height: 70%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    filter: blur(1px);
}

/* Glowing Scifi Portal Window */
.rocket-window {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 35% 35%, #e0f2fe 0%, #0ea5e9 60%, #0369a1 100%);
    border: 3px solid #475569;
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(14, 165, 233, 0.6),
        inset 0 2px 4px rgba(0,0,0,0.4);
}

/* --- Aggressive Angular Wings --- */
.rocket-fin {
    position: absolute;
    bottom: 5px;
    width: 28px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    z-index: -1;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.fin-left {
    left: -22px;
    border-radius: 80% 0 15% 30%;
    transform: rotate(-20deg) skewY(-10deg);
    box-shadow: -8px 8px 15px rgba(0,0,0,0.4);
}

.fin-right {
    right: -22px;
    border-radius: 0 80% 30% 15%;
    transform: rotate(20deg) skewY(10deg);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%); /* Darker shadow-side fin */
    box-shadow: 4px 8px 12px rgba(0,0,0,0.4);
}

/* Engine Base Internal Glow Effect */
.engine-glow {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 6px;
    background: #ffaa00;
    border-radius: 50%;
    box-shadow: 0 -4px 12px #ff4500, 0 0 20px #ffea00;
}

/* --- Intense Engine Thruster Column --- */
.rocket-exhaust {
    position: relative;
    top: -8px;
    display: flex;
    justify-content: center;
}

.fire-particle {
    position: absolute;
    top: 0;
    border-radius: 50% 50% 20% 20% / 80% 80% 20% 20%;
    transform-origin: top center;
}

/* Blazing White-Hot Core Plasma */
.fire-particle.core {
    width: 14px;
    height: 65px;
    background: linear-gradient(to bottom, #ffffff, #fff7ed, transparent);
    box-shadow: 0 0 20px #ffffff;
    animation: jet-pulsate 0.08s ease-in-out infinite alternate;
    z-index: 3;
}

/* Intense Electric Orange Inner Flame */
.fire-particle.inner {
    width: 26px;
    height: 100px;
    background: linear-gradient(to bottom, #ffaa00, #ff5500, transparent);
    box-shadow: 0 0 25px rgba(255, 85, 0, 0.8);
    animation: jet-pulsate 0.12s ease-in-out infinite alternate-reverse;
    z-index: 2;
}

/* Deep Red/Purple Expanding Afterburner Veil */
.fire-particle.outer {
    width: 42px;
    height: 140px;
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.6), rgba(147, 51, 234, 0.2), transparent);
    filter: blur(2px);
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.4);
    animation: jet-pulsate 0.2s ease-in-out infinite alternate;
    z-index: 1;
}

/* --- Animation Keyframes --- */

/* Simulates aggressive rocket flight angle & shaking slightly under engine power */
@keyframes dramatic-flight {
    0% { 
        transform: translateY(0) translateX(0) rotate(24deg); 
    }
    50% { 
        transform: translateY(-25px) translateX(-10px) rotate(26deg); 
    }
    100% { 
        transform: translateY(0) translateX(0) rotate(24deg); 
    }
}

/* High-frequency fire shaking */
@keyframes jet-pulsate {
    0% { transform: scaleX(0.9) scaleY(0.9) skewX(-1deg); }
    100% { transform: scaleX(1.1) scaleY(1.15) skewX(1deg); filter: brightness(1.2); }
}

/* Massive streak lines slicing past */
@keyframes warp-speed {
    0% {
        transform: translateY(-150px) translateX(70px) rotate(-25deg) scaleY(0.3);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(500px) translateX(-230px) rotate(-25deg) scaleY(1.8);
        opacity: 0;
    }
}

/* Responsive adjustments to maintain the launch angle safely on mobile screens */
@media (max-width: 991px) {
    .rocket-container {
        transform: scale(0.8) rotate(24deg) !important;
        animation: dramatic-flight-mobile 3.5s ease-in-out infinite;
    }
    @keyframes dramatic-flight-mobile {
        0% { transform: translateY(0) scale(0.8) rotate(24deg); }
        50% { transform: translateY(-20px) scale(0.8) rotate(25deg); }
        100% { transform: translateY(0) scale(0.8) rotate(24deg); }
    }
}

@media (max-width: 420px) {
    .rocket-container {
        transform: scale(0.65) rotate(24deg) !important;
    }
}
/* ==========================================================================
   FINAL RENDER DISPLAY
   ========================================================================== */

/* The Premium Screening Window Deck Frame */
.render-video-deck {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 
        0 40px 90px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: border-color 0.4s ease;
}

.render-video-deck:hover {
    border-color: rgba(77, 163, 255, 0.3);
}

/* Window Titlebar Header Styling */
.deck-header {
    padding: 4px 12px 14px 8px;
}

.deck-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red   { background-color: #ff5f56; }
.dot-amber { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.deck-badge {
    background: rgba(77, 163, 255, 0.15);
    color: #4da3ff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    border: 1px solid rgba(77, 163, 255, 0.25);
}

/* Native Video Element Styling Override */
.render-native-player {
    border-radius: 12px;
    background-color: #040406;
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* Limit descriptions max width cleanly */
.max-w-2xl {
    max-width: 42rem;
}

/* Responsive Gutter Balancing */
@media (max-width: 768px) {
    .render-video-deck {
        padding: 8px;
        border-radius: 16px;
    }
    .deck-title {
        display: none; /* Hide file path title on narrow smartphone displays */
    }
}

/* ==========================================================================
   TECHNICAL PROCESS PIPELINE (CARDLESS ASYMMETRICAL TIMELINE)
   ========================================================================== */

/* Ambient Vector Lighting Highlights behind track layout fields */
.pipeline-glow-core-left {
    position: absolute;
    top: 20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 163, 255, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.pipeline-glow-core-right {
    position: absolute;
    bottom: 15%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* Base Master Line Container setup */
.pipeline-flow-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Strict Boundary Box to hide animation spillover past the final step */
.pipeline-rail-wrap {
    position: absolute;
    top: 28px;     /* Starts directly at the center of node 01 */
    bottom: 28px;  /* Ends directly at the center of node 03 */
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 2;
}

/* Central Continuous Timeline Track Line */
.pipeline-rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, 
        rgba(77, 163, 255, 0.1) 0%, 
        rgba(77, 163, 255, 0.4) 20%, 
        rgba(167, 139, 250, 0.4) 80%, 
        rgba(167, 139, 250, 0.1) 100%
    );
}

/* Restrained Comet Animation (Strictly locked inside the rail wrap) */
.pipeline-rail-pulse {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #4da3ff, #a78bfa, transparent);
    animation: pipeline-comet-travel 5s linear infinite;
}

@keyframes pipeline-comet-travel {
    0% { 
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        top: 100%; 
        opacity: 0;
    }
}

/* Step Title Meta Typography Gradients */
.pipeline-meta {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 700;
}

/* Floating Orbit Anchors */
.pipeline-orbit-anchor {
    position: relative;
    width: 56px;
    height: 56px;
    background: #0b0f19;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.pipeline-orbit-anchor[data-step="01"] { border-color: rgba(77, 163, 255, 0.4); box-shadow: 0 0 15px rgba(77, 163, 255, 0.1); }
.pipeline-orbit-anchor[data-step="02"] { border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 0 15px rgba(167, 139, 250, 0.1); }
.pipeline-orbit-anchor[data-step="03"] { border-color: rgba(77, 163, 255, 0.4); box-shadow: 0 0 15px rgba(77, 163, 255, 0.1); }
.pipeline-orbit-anchor[data-step="04"] { border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 0 15px rgba(167, 139, 250, 0.1); }
.pipeline-orbit-anchor[data-step="05"] { border-color: rgba(77, 163, 255, 0.4); box-shadow: 0 0 15px rgba(77, 163, 255, 0.1); }

.anchor-icon {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 2;
}

.anchor-pulse-core {
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Interactive Hover States */
.pipeline-node-row:hover .pipeline-orbit-anchor {
    transform: scale(1.12) rotate(360deg);
    background: #0f172a;
}
.pipeline-node-row:hover .pipeline-orbit-anchor[data-step="01"] { border-color: #4da3ff; box-shadow: 0 0 25px rgba(77, 163, 255, 0.35); }
.pipeline-node-row:hover .pipeline-orbit-anchor[data-step="02"] { border-color: #a78bfa; box-shadow: 0 0 25px rgba(167, 139, 250, 0.35); }
.pipeline-node-row:hover .pipeline-orbit-anchor[data-step="03"] { border-color: #4da3ff; box-shadow: 0 0 25px rgba(77, 163, 255, 0.35); }
.pipeline-node-row:hover .pipeline-orbit-anchor[data-step="04"] { border-color: #a78bfa; box-shadow: 0 0 25px rgba(167, 139, 250, 0.35); }
.pipeline-node-row:hover .pipeline-orbit-anchor[data-step="05"] { border-color: #4da3ff; box-shadow: 0 0 25px rgba(77, 163, 255, 0.35); }


.pipeline-node-row:hover .anchor-icon {
    color: #ffffff;
}

.step-content-pane {
    transition: transform 0.4s ease;
}
.pipeline-node-row:hover .step-content-pane {
    transform: translateY(-2px);
}

.pipeline-decorative-spec {
    font-size: 0.72rem;
    line-height: 1.8;
    color: rgba(77, 163, 255, 0.35);
    transition: all 0.4s ease;
}
.pipeline-node-row:hover .pipeline-decorative-spec {
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.5 !important;
}

/* Darkened Original Card-Style Container for Code block */
.code-container {
    background: #0d111a;
    border: 1px solid rgba(77, 163, 255, 0.08);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 40px rgba(77, 163, 255, 0.02);
}

.code-header {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 14px 24px;
}

.code-container pre {
    padding: 24px;
    margin: 0;
    overflow-x: auto;
    max-height: 500px;
    background: transparent;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.code-container pre code {
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Responsive Adaptive Conversions */
@media (max-width: 991px) {
    .pipeline-rail-wrap {
        left: 28px;
        transform: none;
        top: 23px;
        bottom: 23px;
    }
    .pipeline-flow-container {
        padding-left: 15px;
    }
    .pipeline-node-row {
        align-items: flex-start !important;
    }
    .step-content-pane {
        padding-left: 75px !important;
    }
    .pipeline-orbit-anchor {
        width: 46px;
        height: 46px;
    }
    .anchor-icon {
        font-size: 1rem;
    }
    .pipeline-flow-container .col-lg-2 {
        position: absolute !important;
        left: 0;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
/* ==========================================================================
   CINEMATIC CELESTIAL SHOWCASE - ULTIMATE SEAMLESS SPACE BLEND
   ========================================================================== */

.text-gradient-blue {
    color: #4da3ff;
}
.text-gradient-purple {
    color: #a78bfa;
}

/* Outer Canvas Container */
.celestial-showcase-container {
    position: relative !important;
    background-color: transparent !important; 
    padding: clamp(140px, 15vw, 200px) 0 !important;
    overflow: hidden;
}

/* Isolated Background Layer: Fades background and stars seamlessly into adjacent sections */
.showcase-space-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #000000 !important; /* Pure black blocks out global body gradients */
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000000 15%,
        #000000 85%,
        transparent 100%
    );
}

/* High-Density Ambient Starfield Base Layer Configuration (For Depth Texture) */
.cosmic-starfield {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.cosmic-starfield.starfield-dense-back {
    background-image: radial-gradient(1px 1px at 20px 30px, #fff, transparent), radial-gradient(1.5px 1.5px at 150px 80px, rgba(255,255,255,0.8), transparent);
    background-size: 300px 300px;
}

.cosmic-starfield.starfield-dense-mid {
    background-image: radial-gradient(1.5px 1.5px at 60px 120px, #4da3ff, transparent), radial-gradient(2px 2px at 250px 210px, rgba(167,139,250,0.6), transparent);
    background-size: 400px 400px;
    opacity: 0.25;
}

.cosmic-starfield.starfield-dense-front {
    background-image: radial-gradient(2px 2px at 110px 40px, #fff, transparent);
    background-size: 500px 500px;
    opacity: 0.15;
}

.cosmic-starfield.starfield-dense-cluster {
    background: radial-gradient(circle at 80% 40%, rgba(77, 163, 255, 0.08) 0%, rgba(167, 139, 250, 0.04) 35%, transparent 70%);
    filter: blur(50px);
}
/* ==========================================================================
   DYNAMIC HIGH-PERFORMANCE STAR GENERATION (AMPED HIGH VISIBILITY)
   ========================================================================== */

.star-sparkle-node {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    will-change: transform, opacity;
}

/* Intensified Neon Bloom Shaders for high contrast visibility */
.star-sparkle-node.star-variant-white { 
    background-color: #ffffff; 
    box-shadow: 0 0 6px 1px rgba(255, 255, 255, 1); 
}
.star-sparkle-node.star-variant-blue { 
    background-color: #a3d7ff; 
    box-shadow: 0 0 8px 2px rgba(77, 163, 255, 0.9); 
}
.star-sparkle-node.star-variant-amber { 
    background-color: #fff0c2; 
    box-shadow: 0 0 7px 1.5px rgba(255, 189, 46, 0.85); 
}

/* Staggered Twinkle Frequency Maps */
.star-twinkle-fast {
    animation: stellar-pulse-fast 2s ease-in-out infinite alternate;
}
.star-twinkle-medium {
    animation: stellar-pulse-medium 3.5s ease-in-out infinite alternate;
}
.star-twinkle-slow {
    animation: stellar-pulse-slow 5s ease-in-out infinite alternate;
}

/* Upgraded Hardware Animations with much higher opacity floors and peak ceilings */
@keyframes stellar-pulse-fast {
    0% { opacity: 0.25; transform: scale(0.7); }
    50% { opacity: 1.0; transform: scale(1.3); }
    100% { opacity: 0.35; transform: scale(0.6); }
}

@keyframes stellar-pulse-medium {
    0% { opacity: 0.3; transform: scale(0.6); }
    40% { opacity: 0.4; transform: scale(0.7); }
    75% { opacity: 1.0; transform: scale(1.4); }
    100% { opacity: 0.2; transform: scale(0.5); }
}

@keyframes stellar-pulse-slow {
    0% { opacity: 0.2; transform: scale(0.5); }
    50% { opacity: 0.95; transform: scale(1.5); }
    100% { opacity: 0.3; transform: scale(0.6); }
}

/* ==========================================================================
   LAYOUT STRUCTURE & CONTENT CONTAINERS
   ========================================================================== */

/* Two-Column Alternating Layout Matrix (Desktop Viewports) */
@media (min-width: 992px) {
    .showcase-row:nth-child(even) {
        flex-direction: row-reverse !important;
    }
    .showcase-row:nth-child(even) .info-column {
        padding-right: 6% !important;
        padding-left: 15px !important;
    }
    .showcase-row:nth-child(odd) .info-column {
        padding-left: 6% !important;
        padding-right: 15px !important;
    }
}

/* Clean Video Wrapper Framework */
.showcase-video-wrapper {
    position: relative;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    aspect-ratio: 16 / 10;
    z-index: 3;
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-native-video-saturn {
    background: transparent !important;
    filter: brightness(0.95) contrast(1.2);  
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.showcase-native-video {
    background: transparent !important;
    filter: brightness(0.95) contrast(1.2);  
    display: block;  
    width: auto; 
    height: auto;
    max-height: 90%; 
    aspect-ratio: 1 / 1; 
    border-radius: 50%;
    object-fit: cover;
}
/* Text Content Configurations */
.showcase-info-card {
    position: relative;
    z-index: 3;
}
.planet-index-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
}
.planet-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.planet-long-description {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    text-align: justify;
}

/* Telemetry Dashboard Metric Data Grids */
.planet-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}
.metric-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.metric-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}
.metric-value {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
}

/* Mobile & Tablet Optimization Breakpoints */
@media (max-width: 991.98px) {
    .planet-metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .planet-long-description {
        text-align: left;
    }
    .media-column {
        max-width: 540px;
        margin: 0 auto;
    }
}
/* ==========================================================================
   COSMIC CALCULATOR STYLES (PURE HIGH-EMISSION LIVE HOLOGRAPHIC ENGINE)
   ========================================================================== */

/* Live Text Emission Layer */
.live-glow-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Pure Transparent Hologram Base Grid Container */
.hologram-workspace-deck {
    background: radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 80%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 32px 20px 20px 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Upper-Left Hologram Subheading Label */
.hologram-card-tag {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    z-index: 3;
}

/* Interstellar Scanline Screen Grid Effect Overlay */
.hologram-scanlines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%), linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
    background-size: 100% 4px, 5px 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

/* Moving Laser Sweeper Bar */
.hologram-laser-sweeper {
    position: absolute;
    top: -100px; left: 0; right: 0;
    height: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
    animation: laser-sweep 6s infinite linear;
}

/* Tighter, More Integrated Control Interface Box */
.terminal-control-bar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.input-group-space {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: #ffffff;
    pointer-events: none;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.form-control-space {
    width: 100%;
    padding: 8px 14px 8px 38px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 6px;
    outline: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.form-control-space:focus {
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Minimal Electric Line Action Trigger */
.btn-terminal {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-terminal:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.badge-status {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Empty View Glowing Base Element */
.empty-state-glow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Custom Relativistic Holographic Table Configurations */
.telemetry-meta-header {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

.telemetry-matrix-table thead th {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.telemetry-matrix-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent !important;
    transition: all 0.15s ease;
}

.telemetry-matrix-table tbody tr:last-child {
    border-bottom: none;
}

.telemetry-matrix-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.8);
}

.telemetry-matrix-table td {
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

/* Precision Planet Ring Markers with Outer Atmospheric Glow */
.planet-marker {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 0 10px currentColor, 0 0 4px currentColor;
}
.bg-mercury { background-color: #868e9b; color: #9ca3af; }
.bg-venus { background-color: #df910b; color: #f59e0b; }
.bg-mars { background-color: #d83e3e; color: #ef4444; }
.bg-jupiter { background-color: #ea6d15; color: #f97316; }
.bg-saturn { background-color: #cf9d08; color: #eab308; }
.bg-uranus { background-color: #079cb7; color: #06b6d4; }
.bg-neptune { background-color: #3471d3; color: #3b82f6; }
.bg-pluto { background-color: #8d48ce; color: #a855f7; }

/* White Light Projector Upward Flare Component */
.hologram-projector-flare {
    position: absolute;
    bottom: -15px;
    left: 20%;
    right: 20%;
    height: 35px;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(5px);
    animation: hologram-pulse 3s infinite ease-in-out;
}

/* Sci-fi Electronic Interfere & Sweep Mechanical Animations */
@keyframes laser-sweep {
    0% { top: -100px; }
    70%, 100% { top: 100%; }
}

@keyframes hologram-pulse {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 0.9; transform: scaleX(1.04); }
}

.live-hologram-flicker {
    animation: live-chassis-jitter 4s infinite linear;
}

@keyframes live-chassis-jitter {
    0%, 19.99%, 22%, 62.99%, 64%, 64.99%, 70%, 100% { opacity: 0.99; filter: hue-rotate(0deg); }
    20%, 21.99% { opacity: 0.88; filter: contrast(1.1); }
    63%, 63.99% { opacity: 0.92; transform: skewX(0.5deg); }
    65%, 69.99% { opacity: 0.85; filter: brightness(1.2); }
}

/* Responsive Structural Overrides */
@media (max-width: 767px) {
    .hologram-workspace-deck {
        padding: 24px 14px 14px 14px;
    }
    .telemetry-matrix-table th, 
    .telemetry-matrix-table td {
        font-size: 0.78rem;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

/* --------------------------------------------------------------------------
   PORTAL NETWORKING LINK INTEGRATION (CLOSER REFERENCE HUD)
   -------------------------------------------------------------------------- */
.tech-section-closer {
    padding-top: 5rem !important;
    padding-bottom: 6rem !important;
    position: relative;
}

/* Sharp dashed tech rule to split cleanly from the previous calculator section */
.closer-divider-axis {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Subtle, clean code-looking subtitle reference element */
.closer-reference-tag {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.3) !important;
    font-weight: 500;
}

/* Slim interactive anchor buttons */
.minimal-stream-link {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    min-width: 250px;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mini-logo-vector {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.minimal-link-text {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.mini-format-tag {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

/* Hover Interactive States */
.minimal-stream-link:hover {
    background: rgba(77, 163, 255, 0.06);
    border-color: rgba(77, 163, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.minimal-stream-link:hover .mini-format-tag {
    color: #4da3ff;
    background: rgba(77, 163, 255, 0.12);
}

@media (max-width: 767px) {
    .tech-section-closer {
        padding-top: 3.5rem !important;
        padding-bottom: 4.5rem !important;
    }
    .minimal-stream-link {
        width: 100%;
        min-width: 0;
    }
}