:root {
    --pure-white: #FFFFFF;
    --prism-blue: #0077B6;
    --quartz-black: #121212;
    --melt-gold: #FFB700;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 119, 182, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--pure-white);
    color: var(--quartz-black);
    line-height: 1.6;
}

.mono-font {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* Navbar Styling */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--prism-blue) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--quartz-black) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--prism-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #f0f9ff 0%, #ffffff 100%);
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--prism-blue);
}

/* Footer */
footer {
    background: var(--quartz-black);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--prism-blue);
}

/* Technical Specs Table */
.table-specs {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-specs tr {
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.table-specs tr:hover {
    background: #eef7ff;
}

.table-specs td, .table-specs th {
    padding: 1rem;
    border: none;
}

/* Prism Animation Placeholder */
#prism-canvas {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    z-index: 1;
    opacity: 0.6;
}
