/* Base & Variables */
:root {
    --bg-main: #040914;
    --bg-card: rgba(16, 23, 42, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-gold: #c8a96e;
    --accent-blue: #3b82f6;
    --accent-red: #ef4444;
    --glow-gold: rgba(200, 169, 110, 0.3);
    --glow-blue: rgba(59, 130, 246, 0.3);
    
    --font-sans: 'Instrument Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-mono: 'DM Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--glow-blue);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--glow-gold);
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Typography Utilities */
.text-gold { color: var(--accent-gold); }
.text-blue { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }

h1, h2, h3 {
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    z-index: 1000;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-title {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    display: block;
}

.logo-subtitle {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    border-radius: 100px;
    margin-bottom: 24px;
}

.title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    padding: 20px;
    border-radius: 16px;
    flex: 1;
}

.stat-card h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.stat-card .unit {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.stat-card p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

/* Abstract UI */
.abstract-ui {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    animation: float 6s ease-in-out infinite;
    background-image: url('hero-hud-bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.15);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.ui-header {
    height: 40px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    background: rgba(4, 9, 20, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.ui-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(4, 9, 20, 0.5); /* dark semi-transparent glass backing to ensure font readability */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 1;
}

.pulse-ring {
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    position: absolute;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0.3; /* subtle animated ring blending with background image */
}

@keyframes pulse {
    0% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

.ai-status {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    z-index: 2;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.9), 0 0 4px rgba(255, 255, 255, 0.8); /* high contrast pure white text glow */
}

.progress-bar {
    width: 60%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.progress-bar .fill {
    width: 68%;
    height: 100%;
    background: var(--accent-blue);
    animation: load 2s ease-out forwards;
}

@keyframes load {
    from { width: 0; }
    to { width: 68%; }
}

/* Sections Global */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Podcast Section */
.podcast-container {
    display: flex;
    padding: 30px;
    gap: 40px;
    align-items: center;
}

.player-visual {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.cover-art {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.now-playing .tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-red);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: inline-block;
}

.now-playing h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.now-playing p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.player-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: height 0.05s ease, background 0.3s ease;
}

.bar.active { background: var(--accent-gold); }

.time-track {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.track-line {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.track-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-gold);
    border-radius: 2px;
}

.track-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-icon:hover { color: var(--accent-gold); }

.btn-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.4);
}

.fill-icon { fill: currentColor; }

/* Lifecycle Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline-item {
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
}

.timeline-item.visible {
    animation: fadeUp 0.6s ease forwards;
    animation-delay: calc(var(--delay) * 0.1s);
}

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

.timeline-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.stage-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--border-glass);
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 900;
    z-index: 0;
    transition: color 0.3s ease;
}

.timeline-item:hover .stage-num {
    color: rgba(255, 255, 255, 0.1);
}

.stage-info {
    position: relative;
    z-index: 1;
}

.stage-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.stage-info .time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
}

.features-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list li::before {
    content: '→';
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

/* Features Grid */
.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-card {
    padding: 40px;
    transition: transform 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.card-icon.gold { color: var(--accent-gold); }
.card-icon.blue { color: var(--accent-blue); }
.card-icon.red { color: var(--accent-red); }

.grid-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.brand p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.cta-box h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.mt-4 { margin-top: 16px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    main {
        padding: 100px 20px 40px;
        gap: 80px;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .subtitle { 
        margin: 0 auto 30px; 
    }
    
    .podcast-container {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
    
    .player-visual {
        width: 100%;
        justify-content: center;
    }
    
    .player-controls {
        width: 100%;
    }
    
    .timeline, .grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main {
        gap: 60px;
        padding-top: 90px;
    }

    .navbar {
        padding: 10px 16px;
        width: 95%;
        top: 10px;
    }

    .nav-links { 
        display: none; 
    }

    .title { 
        font-size: 2.8rem; 
        line-height: 1.15;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .timeline, .grid-section {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cta-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .abstract-ui {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .title { 
        font-size: 2.2rem; 
    }

    .logo-title {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.5rem;
    }

    .player-visual {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cover-art {
        width: 120px;
        height: 120px;
    }

    .share-briefing-bar {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .timeline-item {
        padding: 24px 20px;
    }

    .grid-card {
        padding: 30px 20px;
    }

    .abstract-ui {
        height: 390px;
    }

    .sensor-overlay {
        gap: 6px;
    }

    .sensor-indicator {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.close-btn {
    top: -20px;
    right: -20px;
}

.prev-btn {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn:hover, .next-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    .close-btn { top: 10px; right: 10px; }
    .lightbox-content { width: 100%; height: 100%; }
}

/* ==========================================================================
   OBSIDIAN Specific Additions & Premium Layout Styles
   ========================================================================== */

/* Logo Icon & Header */
.logo-icon {
    filter: drop-shadow(0 0 8px rgba(200, 169, 110, 0.4));
}

/* Abstract UI additions */
.sensor-overlay {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    z-index: 2;
}

.sensor-indicator {
    background: rgba(4, 9, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.sensor-indicator i {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 3px rgba(200, 169, 110, 0.7));
}

.sensor-indicator:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Comparison Section Table */
.comparison-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
    min-width: 900px;
}

.comparison-table th, 
.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.platform-name {
    font-weight: 600;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-name .comp-logo {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: var(--text-secondary);
}

.platform-name .comp-logo.obsidian { background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); }
.platform-name .comp-logo.okta { background: #3b82f6; }
.platform-name .comp-logo.ping { background: #ec4899; }
.platform-name .comp-logo.idemia { background: #10b981; }
.platform-name .comp-logo.iproov { background: #a855f7; }
.platform-name .comp-logo.facetec { background: #f59e0b; }
.platform-name .comp-logo.clear { background: #06b6d4; }
.platform-name .comp-logo.megvii { background: #e11d48; }

.val-yes i { color: #10b981 !important; width: 18px; height: 18px; }
.val-no i { color: #ef4444 !important; width: 18px; height: 18px; opacity: 0.6; }
.val-partial i { color: #f59e0b !important; width: 18px; height: 18px; }
.val-progress i { color: #f59e0b !important; width: 18px; height: 18px; animation: pulse-warn 2s infinite; }
.val-progress {
    display: flex;
    align-items: center;
    gap: 6px;
}
.progress-text {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: #f59e0b;
}

@keyframes pulse-warn {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.valuation { font-family: var(--font-mono); font-size: 0.85rem; }
.valuation .subtext { font-size: 0.7rem; color: var(--text-secondary); display: block; }
.position { font-size: 0.85rem; }

/* Highlight row for Obsidian */
.highlight-row {
    background: rgba(200, 169, 110, 0.08) !important;
    border-top: 1px solid rgba(200, 169, 110, 0.3) !important;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3) !important;
}

.highlight-row td {
    color: var(--text-primary) !important;
}

.gold-text {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

.gold-val {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

.legend-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

/* Trajectory, Value Bullet List & Mini Table */
.moat-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.panel-capabilities {
    grid-column: span 1;
}

.panel-value {
    grid-column: span 1;
}

.panel-trajectory {
    grid-column: span 1;
}

.table-mini-container {
    overflow-x: auto;
    margin-top: 15px;
}

.mini-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.mini-table th, .mini-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-glass);
}

.mini-table th {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    text-align: left;
    font-weight: 600;
}

.mini-table td {
    color: var(--text-secondary);
}

.mini-table td i {
    width: 14px;
    height: 14px;
}

.gold-head {
    color: var(--accent-gold) !important;
}

.value-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.value-bullets li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-bullets li i {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.value-bullets li strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
}

.value-bullets li p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Valuation Trajectory Timeline */
.trajectory-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
    position: relative;
}

.trajectory-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--border-glass);
    z-index: 0;
}

.traj-step {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.traj-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.traj-icon i {
    width: 20px;
    height: 20px;
}

.traj-info {
    display: flex;
    flex-direction: column;
}

.traj-stage {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.traj-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2px 0 6px 0;
}

.traj-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Trajectory step active state */
.traj-step.active .traj-icon {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-main);
    box-shadow: 0 0 15px var(--glow-gold);
}

.traj-step.active .traj-value {
    color: var(--accent-gold);
}

/* Competitors list & tags */
.competitors-card {
    grid-column: span 1;
}

.competitors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.comp-tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.differentiator-card {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(200, 169, 110, 0.08) 0%, rgba(16, 23, 42, 0.4) 100%) !important;
    border: 1px solid rgba(200, 169, 110, 0.2) !important;
}

.diff-tagline {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.diff-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
    line-height: 1.5;
}

.tech-stack-card {
    grid-column: span 1;
}

.stack-category {
    margin-top: 15px;
}

.stack-category h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.grid-2-col {
    grid-template-columns: 1.25fr 0.75fr !important;
}

/* Adjustments for responsive */
@media (max-width: 1200px) {
    .moat-section .grid-section,
    .tech-stack-section .grid-section {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .panel-capabilities { grid-column: span 1; }
    .panel-value { grid-column: span 1; }
    .panel-trajectory { grid-column: span 2; }
}

@media (max-width: 768px) {
    .moat-section .grid-section,
    .tech-stack-section .grid-section {
        grid-template-columns: 1fr !important;
    }
    .panel-capabilities, .panel-value, .panel-trajectory {
        grid-column: span 1 !important;
    }
}

/* Share Briefing Widget */
.share-briefing-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.share-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-link, .share-btn-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.share-link svg, .share-btn-copy svg {
    width: 15px;
    height: 15px;
}

.share-link:hover, .share-btn-copy:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(200, 169, 110, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.2);
}

/* Tooltip container */
.share-btn-copy {
    position: relative;
}

/* Tooltip text */
.share-btn-copy .tooltip-text {
    visibility: hidden;
    width: 80px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-align: center;
    border-radius: 6px;
    padding: 6px 0;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    margin-left: -40px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transform: translateY(5px);
    pointer-events: none;
}

.share-btn-copy:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* HUD Toast Notification */
.hud-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(8, 12, 24, 0.95);
    border: 1px solid var(--accent-gold);
    padding: 16px 24px;
    border-radius: 12px;
    color: var(--text-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(200, 169, 110, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--accent-gold);
}

.hud-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.hud-toast-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-toast-icon svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 5px rgba(200, 169, 110, 0.6));
}

.hud-toast-text h4 {
    margin: 0 0 4px 0;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
}

.hud-toast-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (max-width: 576px) {
    .hud-toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

