:root {
    --bg-base: #060812; /* Sleek obsidian/midnight slate */
    --bg-surface: #0b0e1a; /* Obsidian card backing */
    --bg-surface-elevated: #121727; /* Dark graphite for active or nested panels */
    --accent-primary: #ff6b00; /* Safety Orange - corporate identity */
    --accent-secondary: #ff9f00; /* Secondary amber-orange */
    --accent-cyan: #0ea5e9; /* Telemetry blue/cyan - professional and readable */
    --accent-green: #10b981; /* Compliance Green */
    --accent-danger: #f43f5e; /* Threat Red */
    --text-primary: #f8fafc; /* Crisp white-slate */
    --text-secondary: #cbd5e1; /* Clear reading grey */
    --text-muted: #64748b; /* Soft muted label grey */
    --border-color: rgba(255, 255, 255, 0.06); /* Professional fine border */
    --border-accent: rgba(255, 107, 0, 0.15); /* Accent highlight border */
    --font-sans: 'Outfit', 'Inter', sans-serif;
    --font-title: 'Outfit', 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --glass-bg: rgba(11, 14, 26, 0.8);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 107, 0, 0.01);
    --card-bg: #0b0e1a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 107, 0, 0.04) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.03) 0px, transparent 40%),
        linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utils */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent-gradient {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Particle Canvas */
#particle-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #05070c;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.logo-mark {
    width: 24px;
    height: 28px;
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-mark::after {
    content: '';
    width: 20px;
    height: 24px;
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    background: var(--bg-base);
    position: absolute;
}

.logo-mark::before {
    content: '';
    width: 16px;
    height: 20px;
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    background: linear-gradient(to bottom, transparent, var(--accent-primary) 150%);
    position: absolute;
    z-index: 2;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
    letter-spacing: 0.2px;
    font-family: 'Outfit', sans-serif;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Overlay Menu styling */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(3, 3, 3, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.mobile-menu-overlay a:hover, .mobile-menu-overlay a.active {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Subpage Hero Section styling */
.subpage-header {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.015) 0%, transparent 100%);
}

.subpage-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.subpage-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.04);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 100px;
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 6.5vw, 6rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 650px;
    margin-inline: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Terminal Interactive Component */
.terminal-container {
    margin-top: 80px;
    max-width: 900px;
    margin-inline: auto;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 0, 0.02);
    text-align: left;
    position: relative;
}

.terminal-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.5;
}

.terminal-header {
    background: rgba(5, 5, 5, 0.9);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    height: 250px;
    overflow-y: auto;
}

.t-user { color: var(--accent-secondary); text-shadow: 0 0 5px rgba(255,107,0,0.25); }
.t-system { color: #888; }
.t-attack { color: var(--accent-danger); font-weight: bold; }
.t-shield { color: var(--accent-primary); font-weight: bold; text-shadow: 0 0 8px rgba(255,107,0,0.4); }
.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent-secondary);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    box-shadow: 0 0 8px var(--accent-secondary);
}

@keyframes blink { 50% { opacity: 0; } }

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.005), transparent);
}

.trusted-by p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.logo-grid:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

.mock-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s, text-shadow 0.3s;
}

.mock-logo:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 15px rgba(255,107,0,0.25);
}

/* Problem Section */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comp-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comp-card.bad::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-danger);
    box-shadow: 0 0 10px var(--accent-danger);
}

.comp-card.good::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary);
}

.comp-card h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.comp-list li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-family: monospace;
}

.bad .comp-list li::before { content: '✕'; color: var(--accent-danger); }
.good .comp-list li::before { content: '✓'; color: var(--accent-secondary); text-shadow: 0 0 5px var(--accent-secondary); }

/* Features - Glow Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.glow-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.glow-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.glow-card-content {
    position: relative;
    z-index: 10;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.04);
    color: var(--accent-secondary);
    border: 1px solid rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(255, 107, 0, 0.02);
}

.glow-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.glow-card p {
    color: var(--text-secondary);
}

.glow-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-surface-elevated);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 107, 0, 0.02);
}

.glow-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.35), transparent);
}

.glow-card:hover .card-icon {
    color: var(--accent-primary);
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
}

.faq-item summary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
    transition: color 0.3s;
}

.faq-item summary:hover {
    color: var(--accent-secondary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    margin-top: 20px;
    color: var(--text-secondary);
    animation: fadeIn 0.4s ease;
    font-size: 1.05rem;
    line-height: 1.7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Section */
.cta-section {
    padding: 140px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.015) 100%);
    border-top: 1px solid var(--border-color);
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col a {
    color: var(--text-secondary);
    transition: all 0.2s;
}

.footer-col a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,107,0,0.25);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   NEW ENTERPRISE MODULES & ELEMENTS
   ========================================================================== */

/* Pricing Tiers Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.08);
}

.pricing-card.popular::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 24px;
    right: -32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 107, 0, 0.02);
}

.pricing-tier {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 36px;
    min-height: 48px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* API Documentation Layout */
.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    margin-top: 60px;
}

.docs-sidebar {
    position: sticky;
    top: 120px;
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-nav-group {
    margin-bottom: 30px;
}

.docs-nav-group h4 {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.docs-nav-group ul {
    list-style: none;
}

.docs-nav-group ul li {
    margin-bottom: 12px;
}

.docs-nav-group ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.docs-nav-group ul li a:hover, .docs-nav-group ul li a.active {
    color: white;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.docs-content {
    max-width: 800px;
}

.docs-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.docs-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.docs-section h3 {
    font-size: 1.35rem;
    margin: 30px 0 15px;
}

.docs-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* API Spec Boxes */
.api-spec {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.api-route {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: monospace;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.api-method {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

.api-method.post { background: rgba(255, 107, 0, 0.08); color: var(--accent-primary); border: 1px solid rgba(255, 107, 0, 0.25); }
.api-method.get { background: rgba(16, 185, 129, 0.08); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.25); }

.param-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.param-table th, .param-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.param-table th {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.param-name { font-family: monospace; font-weight: bold; color: var(--accent-secondary); }
.param-type { font-family: monospace; font-size: 0.85rem; color: #888; }

/* Code Snippets switcher */
.code-box {
    background: rgba(5,5,5,0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.code-tabs {
    background: rgba(15,15,15,0.9);
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.code-tab-btn:hover, .code-tab-btn.active {
    color: var(--accent-secondary);
    background: rgba(255, 107, 0, 0.08);
}

.code-content-block {
    display: none;
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
    overflow-x: auto;
}

.code-content-block.active {
    display: block;
}

/* Contact Demo Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    box-shadow: var(--card-shadow);
}

.info-icon {
    font-size: 1.75rem;
    color: var(--accent-secondary);
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-title);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-textarea {
    width: 100%;
    background: #070a12;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-textarea {
    height: 150px;
    resize: none;
}

/* Blog layouts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 107, 0, 0.02);
}

.blog-img-placeholder {
    height: 220px;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.06) 0%, rgba(6, 8, 18, 0.6) 70%),
                linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-img-placeholder::before {
    content: '';
    width: 48px;
    height: 56px;
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.3));
    opacity: 0.85;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.blog-card:hover .blog-img-placeholder::before {
    transform: scale(1.1);
    opacity: 1;
}

.blog-card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-title);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
    color: var(--accent-secondary);
}

/* Individual Blog Page Details */
.blog-post-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
}

.blog-post-header {
    margin-bottom: 48px;
    text-align: center;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-post-meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.blog-post-meta span {
    color: var(--accent-secondary);
    margin-right: 16px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.blog-post-content p {
    margin-bottom: 30px;
}

.blog-post-content h2, .blog-post-content h3 {
    color: white;
    margin: 48px 0 20px;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 0 0 30px 24px;
}

.blog-post-content li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.blog-post-content blockquote {
    border-left: 3px solid var(--accent-primary);
    background: rgba(255, 107, 0, 0.02);
    padding: 24px 30px;
    margin: 40px 0;
    font-style: italic;
    color: var(--text-primary);
}

/* About Layout styling */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-graphics {
    position: relative;
    height: 400px;
    background: rgba(11, 14, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
}

.about-logo-big {
    width: 120px;
    height: 135px;
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.2);
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(18, 23, 39, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section {
    margin-top: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.15);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-secondary);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (UPDATED)
   ========================================================================== */
@media (max-width: 1024px) {
    .docs-layout {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
        height: auto;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-btns {
        flex-direction: column;
    }
    .terminal-container {
        margin-top: 50px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   INTERACTIVE SHIELD SIMULATOR & FUTURISTIC HUD ELEMENTS
   ========================================================================== */

.sim-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(20px);
}

.sim-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.sim-input-section h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: white;
}

.sim-textarea {
    width: 100%;
    height: 120px;
    background: #070a12;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px;
    color: white;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    resize: none;
    margin-bottom: 20px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.sim-template-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.sim-template-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.sim-template-btn:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.25);
    color: var(--accent-secondary);
}

.sim-pipeline-section {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sim-pipeline-title {
    font-family: var(--font-title);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.sim-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-step {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: 0.3s;
}

.sim-step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: 0.3s;
}

.sim-step.active {
    color: white;
}

.sim-step.active .sim-step-icon {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

.sim-step.success .sim-step-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.sim-step.flagged .sim-step-icon {
    background: rgba(244, 63, 94, 0.1);
    border-color: var(--accent-danger);
    color: var(--accent-danger);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

.sim-result-box {
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.4);
    border: 1px solid var(--border-color);
    display: none;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sim-result-box.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Glass HUD Elements */
.hud-image-container {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.hud-image-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hud-image {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: lighten;
    opacity: 0.85;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hud-image-container:hover .hud-image {
    transform: scale(1.03);
    opacity: 1;
}

.hud-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--accent-primary);
    border-style: solid;
    z-index: 5;
    pointer-events: none;
}

.hud-corner.tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.hud-corner.tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

@media (max-width: 768px) {
    .sim-grid {
        grid-template-columns: 1fr;
    }
}
