/* CSS Reset & Variables */
:root {
    --bg-color: #0b0f19;
    --surface-color: #161b26;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #38bdf8;
    --border: #232d3f;
    --max-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding-top: 80px; /* Offset for fixed header */
}

/* Layout Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Ensure the logo container behaves as a flex row */
/* Ensure the logo container centers the larger icon perfectly */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;                  /* Increased spacing to match the massive 60px icon scale */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 28px;            /* Visually balances against the 60px height of the icon */
    font-weight: 700;            /* Heavy bold for ASPECT to make it punchy */
    text-transform: uppercase;
    letter-spacing: 0.02em;     /* Clean tech tracking */
    color: #ffffff;
}

/* Upscaled layout for the cyberpunk SVG icon */
.logo-icon {
    width: 60px;       
    height: 60px;      
    display: inline-block;
    flex-shrink: 0;    
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.25)); /* Enhanced glow for the larger size */
}

.logo span {
    color: #9ca3af;            /* Muted grey/slate for CYBER */
    font-weight: 300;          /* Clean contrast against the bold ASPECT */
    letter-spacing: 0.08em;    /* Slightly wider tracking for the thinner font weight */
    margin-left: 0px;          /* Micro-adjustment to space ASPECT and CYBER cleanly */
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Sections General */
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Hero Section */
#hero {
    padding: 8rem 0;
}

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

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--text-main);
    color: var(--bg-color);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Grid / Capabilities */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--surface-color);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 6px;
}

.card-num {
    font-family: monospace;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

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

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

/* Philosophy / Blockquote */
.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

blockquote {
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    color: var(--text-main);
}

.philosophy-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #080b12;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-meta {
    font-family: monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .philosophy-layout { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    section { padding: 4rem 0; }
    .footer-layout { flex-direction: column; gap: 1rem; text-align: center; }
}