/* style.css */
:root {
    --bg-color: #030304;
    --text-main: #f0f0f0;
    --text-muted: #888890;
    --accent: #a855f7; /* Purple */
    --accent-glow: rgba(168, 85, 247, 0.2);
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* AMBIENT BACKGROUND GLOW */
.ambient-glow {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #000 70%);
    z-index: -1;
    pointer-events: none;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

/* LAYOUT UTILS */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* TYPOGRAPHY */
h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem); /* Responsive giant text */
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom right, #fff 30%, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    font-weight: 300;
}

/* APP CARD (Used on Apps Page) */
.app-card {
    display: flex;
    gap: 30px;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s;
    align-items: center;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.app-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 18px;
}

.app-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}

.app-info p {
    color: var(--text-muted);
    margin: 0 0 20px 0;
    font-size: 1rem;
}

.cta-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
    padding: 60px 0;
    text-align: center;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--text-muted);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
    border-color: white;
}
