:root {
    /* Color Palette - Security & Modernity */
    --bg-dark: #07090E; /* Obsidian deep navy/black */
    --surface: #121620; /* Metallic dark gray */
    --surface-glass: rgba(18, 22, 32, 0.6);
    --border-glass: rgba(0, 255, 157, 0.15);
    
    --accent-primary: #00FF9D; /* Neon Emerald */
    --accent-primary-glow: rgba(0, 255, 157, 0.4);
    --accent-secondary: #0088FF; /* Deep Azure */
    
    --text-main: #F0F4F8; /* Bright gray */
    --text-muted: #8A9BB1;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: 30%;
    right: -200px;
    opacity: 0.3;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: rgba(0, 136, 255, 0.2);
    bottom: -100px;
    left: 20%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-primary-glow);
    font-weight: 600;
}

.btn-primary:hover {
    background: #00e68d;
    box-shadow: 0 0 30px var(--accent-primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 255, 157, 0.1);
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(7, 9, 14, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(0, 136, 255, 0.1);
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 136, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Section Common */
.section {
    padding: 6rem 0;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 255, 157, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Kora Section */
.kora-section {
    position: relative;
}

.kora-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kora-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.kora-subtitle {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.kora-features {
    list-style: none;
    margin-top: 2rem;
}

.kora-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.kora-features .bullet {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-secondary);
}

.kora-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 255, 157, 0.3);
}

.kora-card-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 0.4rem;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.dots span:nth-child(1) { background: #FF5F56; }
.dots span:nth-child(2) { background: #FFBD2E; }
.dots span:nth-child(3) { background: #27C93F; }

.kora-status {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kora-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.kora-card-body {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(18, 22, 32, 0.8) 0%, rgba(7, 9, 14, 0.9) 100%);
}

.ai-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
    margin-bottom: 2rem;
}

.ai-waveform .bar {
    width: 6px;
    background: var(--accent-secondary);
    border-radius: 3px;
    animation: waveform 1s infinite ease-in-out alternate;
}

.ai-waveform .bar:nth-child(1) { height: 20px; animation-delay: 0.1s; }
.ai-waveform .bar:nth-child(2) { height: 40px; animation-delay: 0.2s; }
.ai-waveform .bar:nth-child(3) { height: 60px; background: var(--accent-primary); animation-delay: 0.3s; box-shadow: 0 0 10px var(--accent-primary); }
.ai-waveform .bar:nth-child(4) { height: 30px; animation-delay: 0.4s; }
.ai-waveform .bar:nth-child(5) { height: 50px; background: var(--accent-primary); animation-delay: 0.5s; box-shadow: 0 0 10px var(--accent-primary); }
.ai-waveform .bar:nth-child(6) { height: 25px; animation-delay: 0.6s; }
.ai-waveform .bar:nth-child(7) { height: 45px; animation-delay: 0.7s; }

@keyframes waveform {
    0% { transform: scaleY(0.5); }
    100% { transform: scaleY(1); }
}

.kora-log {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.kora-log p {
    margin-bottom: 0.5rem;
}

.kora-log .highlight {
    color: var(--accent-primary);
    font-weight: bold;
}

/* Pathways & Dual Licensing Options */
.pathways {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

.pathway-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pathway-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.pathway-card.featured {
    border-color: rgba(0, 136, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.05) 0%, rgba(7, 9, 14, 0.9) 100%);
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.1);
}

.pathway-card.featured:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 20px 50px rgba(0, 136, 255, 0.2), 0 0 30px rgba(0, 255, 157, 0.05);
}

.pathway-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.pathway-card.featured .pathway-badge {
    border-color: var(--accent-primary-glow);
    color: var(--accent-primary);
}

.pathway-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.pathway-sub {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.pathway-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
}

.pathway-card.featured .pathway-price {
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.25);
}

.pathway-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.pathway-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pathway-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pathway-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.pathway-list li span.check {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.pathway-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.github-btn {
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    background: var(--surface);
}

.github-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
}

.cloud-btn {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

.cloud-btn:hover {
    background: #00e68d;
    box-shadow: 0 0 25px var(--accent-primary-glow);
    transform: translateY(-1px);
}

/* Acquisition Checkout/Waitlist Card */
.waitlist-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.waitlist-card:hover {
    border-color: var(--accent-primary-glow);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.05);
}

.waitlist-title-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 20px;
    color: var(--accent-secondary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.waitlist-form {
    width: 100%;
}

.input-wrapper {
    display: flex;
    gap: 8px;
    background: var(--bg-dark);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.15);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.2rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

input[type="email"]::placeholder {
    color: var(--text-muted);
}

.input-wrapper button[type="submit"] {
    background: var(--accent-primary);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.input-wrapper button[type="submit"]:hover {
    background: #00e68d;
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

.input-wrapper button svg {
    transition: transform 0.3s ease;
}

.input-wrapper button:hover svg {
    transform: translateX(4px);
}

.pricing-info {
    margin-top: 1.2rem;
    text-align: left;
    padding-left: 0.5rem;
}

.pricing-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-info strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.or-divider::before {
    margin-right: 1.2rem;
}

.or-divider::after {
    margin-left: 1.2rem;
}

.github-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-main);
    background: var(--surface);
    border: 1px solid var(--border-glass);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}

.github-hero-btn svg {
    fill: currentColor;
}

.github-hero-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-top: 1.2rem;
    text-align: left;
}

.message.hidden {
    display: none;
}

.message.success {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.message.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}


/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: left;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-card {
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(18, 22, 32, 0.8) 0%, rgba(0, 136, 255, 0.05) 100%);
    border-top: 2px solid var(--accent-secondary);
}

.philosophy-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.philosophy-text.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    font-style: italic;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease-out; }
.fade-in-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile nav approach for landing */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .kora-grid, .footer-container, .pathways-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-card {
        padding: 2rem;
    }
}

/* Hacker / Terminal Aesthetics */
.terminal-text {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    text-transform: lowercase;
    font-size: 0.9em;
    letter-spacing: 0.05em;
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 rgba(255, 0, 0, 0.7);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 rgba(0, 255, 255, 0.7);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(4px, 9999px, 86px, 0); }
    10% { clip: rect(22px, 9999px, 8px, 0); }
    20% { clip: rect(54px, 9999px, 73px, 0); }
    30% { clip: rect(31px, 9999px, 90px, 0); }
    40% { clip: rect(11px, 9999px, 64px, 0); }
    50% { clip: rect(76px, 9999px, 61px, 0); }
    60% { clip: rect(49px, 9999px, 91px, 0); }
    70% { clip: rect(23px, 9999px, 51px, 0); }
    80% { clip: rect(38px, 9999px, 70px, 0); }
    90% { clip: rect(55px, 9999px, 30px, 0); }
    100% { clip: rect(7px, 9999px, 59px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
}

/* Screen-reader-only (A11y / SEO / GEO) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ROI Comparison Table Styles */
.roi-table-container {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    text-align: left;
}

.roi-table th, .roi-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-table th {
    background: rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.roi-table tr:last-child td {
    border-bottom: none;
}

.roi-table td.highlight-column {
    color: var(--accent-primary);
    background: rgba(0, 255, 157, 0.02);
}

.roi-table td.muted-column {
    color: var(--text-muted);
}

.roi-table td .status-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: bold;
}

.roi-table td .status-icon.success {
    color: var(--accent-primary);
}

.roi-table td .status-icon.danger {
    color: #ff4757;
}
