 :root {
    --primary-bg: #0b1120;
    --primary-dark: #020617;
    --brand-navy: #232f3e; 
    --brand-orange: #f6931d;
    --brand-orange-light: #ffb347;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.8);
    --border-white: rgba(255, 255, 255, 0.1);
    --shadow-orange: 0 4px 15px rgba(246, 147, 29, 0.3);
    --brand-lime: #32cd32;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.navbar {
    background: var(--primary-dark);
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    padding: 16px 0; border-bottom: 1px solid var(--border-white);
}

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

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; position: relative; }

.logo-icon {
    width: 45px; height: 45px;
    background: var(--brand-navy);
    border-radius: 8px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: visible;
}

.logo-icon::before {
    content: "SF";
    color: #FFFFFF;
    font-weight: 800; font-size: 20px;
    z-index: 2; margin-top: -5px;
}

.logo-icon::after {
    content: "";
    position: absolute; bottom: 8px;
    width: 26px; height: 10px;
    border: solid 3px var(--brand-orange);
    border-color: transparent transparent var(--brand-lime) transparent;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.logo-icon-tip {
    position: absolute; bottom: 6px; right: 7px;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--brand-lime);
    transform: rotate(-20deg);
    z-index: 3;
}

.lime-icon {
    color: #32cd32;  /* Direct hex color instead of variable */
    font-size: 14px;
}

.logo-text { color: white; font-weight: 700; font-size: 22px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { color: var(--text-light); text-decoration: none; font-weight: 500; transition: color 0.3s; cursor: pointer; }
.nav-link:hover { color: var(--brand-orange); }

.beta-badge {
    position: absolute; top: -8px; right: -30px;
    background: var(--brand-lime); color: #000;
    font-size: 9px; font-weight: 900; padding: 2px 6px;
    border-radius: 4px; text-transform: uppercase;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.4);
    animation: pulse-lime 2s infinite;
}

@keyframes pulse-lime {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero { padding: 160px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: white; }
.highlight { color: var(--brand-orange); }
.hero-description { font-size: 18px; font-weight: 400; color: var(--text-light); max-width: 550px; margin-bottom: 36px; opacity: 0.9; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    color: var(--primary-dark); font-weight: 700; padding: 14px 32px;
    border-radius: 8px; text-decoration: none; display: inline-flex;
    align-items: center; gap: 10px; transition: all 0.3s ease;
    box-shadow: var(--shadow-orange); border: none; cursor: pointer; font-family: inherit;
}
.cta-primary:hover { transform: translateY(-2px); filter: brightness(1.1); }

.cta-secondary { border: 2px solid var(--brand-orange); color: white; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.cta-secondary:hover { background: var(--brand-orange); color: var(--primary-dark); }

.comparison-card { background: var(--glass-bg); border: 1px solid var(--border-white); border-radius: 20px; padding: 32px; backdrop-filter: blur(12px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.comparison-card h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 2.5px; text-align: center; margin-bottom: 28px; color: var(--text-muted); font-weight: 700; }
.stat-row { margin-bottom: 28px; }
.stat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.stat-header .icon { font-size: 20px; }
.stat-header .label { 
    color: var(--brand-orange); 
    font-weight: 600;
    font-size: 20px; 
    display: flex; 
    flex-direction: column; 
}
.stat-header small { color: var(--text-light); font-weight: 400; font-size: 13px; margin-top: 2px; }
.progress-container { background: rgba(255, 255, 255, 0.05); height: 40px; border-radius: 8px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 0 14px; }
.progress-bar-fill { position: absolute; left: 0; height: 100%; background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light)); opacity: 0.2; }
.cloud-marker { font-size: 12px; color: var(--text-muted); z-index: 1; font-weight: 500; }

.trust-section { margin-top: 60px; }
.trust-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 25px; }
.logo-grid { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-item { display: flex; align-items: center; gap: 10px; opacity: 0.6; color: white; text-decoration: none; transition: 0.3s; }
.logo-item:hover { opacity: 1; color: var(--brand-orange); }
.logo-item svg { height: 24px; width: auto; fill: currentColor; }

.sandbox-section { display: none; padding: 100px 0; background: #020617; border-top: 1px solid var(--border-white); }

.sandbox-card {
    transition: all 0.3s ease;
    cursor: default;
}

.sandbox-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-lime) !important;
    box-shadow: 0 10px 30px rgba(180, 255, 0, 0.1);
}

.sandbox-tabs { display: flex; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--border-white); }
.tab-btn { padding: 10px 20px; color: var(--text-muted); cursor: pointer; font-weight: 600; border-bottom: 2px solid transparent; transition: 0.3s; }
.tab-btn.active { color: var(--brand-lime); border-bottom-color: var(--brand-lime); }

.code-block { background: #000; border-radius: 8px; padding: 20px; font-family: 'Courier New', monospace; font-size: 14px; color: var(--brand-lime); overflow-x: auto; }
/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    background: var(--primary-dark);
    border: 1px solid var(--border-white);
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Sections */
.dropdown-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-white);
}

.dropdown-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-icon {
    font-size: 16px;
}

.section-title {
    color: var(--text-light);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dropdown Items */
.dropdown-item {
    display: block;
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--text-light);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-orange);
    transform: translateX(4px);
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.item-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.item-desc {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Resources Sidebar */
.resources-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--primary-dark);
    border-left: 1px solid var(--border-white);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
}

.resources-sidebar.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-white);
}

.sidebar-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.close-btn:hover {
    color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.05);
}

/* Sidebar Menu */
.sidebar-menu {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-white);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-light);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-orange);
}

.menu-item.active {
    background: rgba(246, 147, 29, 0.1);
    color: var(--brand-orange);
    border-left: 3px solid var(--brand-orange);
}

.menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.menu-title {
    font-weight: 600;
    font-size: 15px;
}

/* Sidebar Content */
.sidebar-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.content-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-item {
    display: block;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.content-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-orange);
    transform: translateX(4px);
}

.item-title {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.item-desc {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
}

/* Empty State */
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-muted);
    font-style: italic;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .resources-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Add to your CSS file */
.feature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.deployment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2.5rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.option-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-lime);
}

.option-icon {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    padding: 12px;
    color: var(--brand-lime);
    font-size: 20px;
}

.option-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.option-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.architecture-diagram {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-layer {
    margin-bottom: 20px;
}

.arch-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 500;
}

.arch-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-layer {
    border-color: rgba(239, 68, 68, 0.3);
}

.shieldflow-layer {
    border-color: rgba(34, 197, 94, 0.3);
}

.providers-layer {
    border-color: rgba(255, 140, 0, 0.3);
}

.arch-box span {
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.sub-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.sub-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
}

.provider-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.provider-logos span {
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.arch-arrow {
    text-align: center;
    margin: 15px 0;
}

.observability-badge {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.col-lg-6 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

@media (max-width: 992px) {
    .deployment-options {
        grid-template-columns: 1fr;
    }
    
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.use-cases-grid {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.use-case-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: var(--brand-lime);
    transform: translateY(-2px);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.use-case-content h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.use-case-content p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
}

.protection-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.protection-features span {
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #22c55e;
}
/* Add to your CSS file */
.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered .hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-align: center;
}

.hero-content-centered .hero-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 36px;
    opacity: 0.9;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-centered .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.hero-content-centered .trust-section {
    margin-top: 60px;
    text-align: center;
}

.hero-content-centered .trust-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: center;
}

.hero-content-centered .logo-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.delivery-options span {
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #8b5cf6;
}
.footer { background: var(--primary-dark); border-top: 1px solid var(--border-white); padding: 80px 0 40px; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin-top: 20px; max-width: 320px; }
.footer-links h4 { font-size: 16px; font-weight: 700; margin-bottom: 24px; color: white; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: var(--text-muted); transition: 0.3s ease; font-size: 15px; }
.footer-links a:hover { color: var(--brand-orange); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border-white); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--text-muted); }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--text-muted); font-size: 18px; transition: 0.3s; }
.social-links a:hover { color: var(--brand-orange); }

@media (max-width: 992px) { 
    .hero-grid, .footer-grid { grid-template-columns: 1fr; } 
    .hero-actions { justify-content: center; }
    .comparison-card { margin: 40px auto 0; max-width: 480px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Add to your styles.css file */
.json-key { color: #9cdcfe; }
.json-string { color: #ce9178; }
.json-number { color: #b5cea8; }
.json-boolean { color: #569cd6; }
.json-null { color: #569cd6; }

/* Add these to your existing style.css file */

.json-key { color: #9cdcfe; }
.json-string { color: #ce9178; }
.json-number { color: #b5cea8; }
.json-boolean { color: #569cd6; }
.json-null { color: #569cd6; }

/* Also update your existing pre code styling if needed */
#json-output code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
}
