/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure all elements have black background */
* {
    background-color: var(--color-black);
}

:root {
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Color Palette - Luxurious Black & White with Pastel Accents */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    /* Pastel Accents */
    --color-pastel-blue: #e0f2fe;
    --color-pastel-pink: #fce7f3;
    --color-pastel-lavender: #f3e8ff;
    --color-pastel-mint: #ecfdf5;
    --color-pastel-peach: #fff7ed;
    
    /* Semantic Colors */
    --color-primary: var(--color-white);
    --color-secondary: var(--color-gray-400);
    --color-accent: var(--color-gray-500);
    --color-background: var(--color-black);
    --color-surface: var(--color-gray-900);
    --color-border: var(--color-gray-800);
    --color-text-primary: var(--color-white);
    --color-text-secondary: var(--color-gray-400);
    --color-text-muted: var(--color-gray-500);
    
    /* Spacing System */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    background-color: var(--color-black);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-7xl);
    font-weight: 300;
}

h2 {
    font-size: var(--text-5xl);
    font-weight: 400;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 500;
}

p {
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-image {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
}

.logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: var(--color-black);
    position: relative;
    margin: 0;
    padding-bottom: 0;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    text-align: center;
}

.hero-header {
    margin-bottom: var(--space-3xl);
}

.hero-title {
    margin-bottom: var(--space-2xl);
}

.title-line {
    display: block;
    margin-bottom: var(--space-sm);
}

.title-line.accent {
    background: linear-gradient(90deg, #404040, #737373, #a3a3a3, #737373, #404040);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    animation: shimmer 2s ease-in-out forwards;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--color-text-primary);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-pastel-mint);
    z-index: -1;
}

.hero-cta {
    margin-top: var(--space-4xl);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-surface) !important;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-pastel-mint);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Cursor Spotlight Effect */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    background: radial-gradient(
        circle 150px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.04) 40%,
        rgba(255, 255, 255, 0.02) 60%,
        rgba(255, 255, 255, 0.01) 80%,
        transparent 100%
    );
}

.cursor-spotlight.active {
    opacity: 1;
}

/* Hide spotlight on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-spotlight {
        display: none;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    background-color: transparent;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float-in 8s ease-out forwards;
}

.floating-shape.circle {
    border-radius: 50%;
}

.floating-shape.square {
    border-radius: 0;
    transform: rotate(45deg);
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    background: transparent;
    border: none;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 255, 255, 0.1);
}

@keyframes float-in {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(0) scale(0);
    }
    20% {
        opacity: 0.8;
        transform: translateX(0) translateY(0) scale(1);
    }
    80% {
        opacity: 0.6;
        transform: translateX(50px) translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateX(100px) translateY(-40px) scale(0.6);
    }
}

/* Footer */
.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4xl) 0 var(--space-2xl);
    text-align: center;
    margin: 0;
}

.footer-content {
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-image {
    width: 2.25rem;
    height: 2.25rem;
}

.footer-logo .logo-text {
    font-size: var(--text-lg);
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .container {
        padding: 0 var(--space-md);
    }
} 