/* =========================================
   GLOBAL DESIGN SYSTEM & TYPOGRAPHY
========================================= */
:root {
    --bg: #FFFFFF;
    --surface: #FAFAFB;
    --border: #E2E2E7;
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --accent: #F38020;
    --accent-warm: #FFB800;
    --glass-bg: rgba(250, 250, 251, 0.75);
    --glass-solid: rgba(250, 250, 251, 0.95);
    --fs-h1: clamp(2.5rem, 4.5vw, 4rem);       
    --fs-h2: clamp(1.85rem, 3vw, 2.65rem);     
    --fs-h3: clamp(1.25rem, 1.5vw, 1.45rem);   
    --fs-lead: clamp(1.05rem, 1.35vw, 1.25rem); 
    --fs-body: 0.95rem;                         
    --tracking-tight: -0.02em;
    --tracking-tighter: -0.03em;
}

html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', sans-serif; background-color: var(--bg); color: var(--text-primary); font-size: var(--fs-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
#fluid-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; pointer-events: none; }

h1 { font-size: var(--fs-h1); letter-spacing: var(--tracking-tighter); line-height: 1.1; margin: 0 0 1.5rem; font-weight: 700; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; cursor: default; }
h2 { font-size: var(--fs-h2); letter-spacing: var(--tracking-tight); line-height: 1.2; margin: 0 0 1.25rem; font-weight: 600; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; cursor: default; }
h1:hover, h2:hover { transform: translateY(-2px) scale(1.01); color: var(--accent); }

.lead { font-size: var(--fs-lead); color: var(--text-secondary); max-width: 720px; margin: 0 auto; line-height: 1.5; font-weight: 400; letter-spacing: -0.01em; text-align: left; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); padding: 1rem; border-radius: 0.7rem; border: 1px solid transparent; }
.lead:hover { transform: translateY(-2px) scale(1.005); color: var(--text-primary); background: rgba(250, 250, 251, 0.6); border-color: rgba(243, 128, 32, 0.25); box-shadow: 0 4px 20px rgba(243, 128, 32, 0.03); }
.eyebrow { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem; margin-bottom: 1rem; display: block; }

.hero { padding: 13rem 0 4rem; text-align: center; background: transparent; }
.story-section { padding: 4rem 0; margin: 0 auto; max-width: 1000px; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
footer { border-top: 1px solid var(--border); padding: 4rem 2rem; margin-top: 8rem; display: flex; justify-content: space-between; color: var(--text-secondary); font-size: 0.875rem; }

/* =========================================
   DESKTOP NAVIGATION ENGINE
========================================= */
nav { position: fixed; top: 0; width: 100%; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); z-index: 100; background: rgba(255, 255, 255, 0.8); }
.nav-content { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 2rem; max-width: 1400px; margin: 0 auto; }
.logo-container { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; z-index: 101; position: relative; }
.logo-container a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 0.75rem; }
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; padding: 1rem 0; }
.nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; cursor: pointer; }
.nav-link-inactive { color: var(--text-secondary); }
.nav-link-inactive:hover { color: var(--text-primary); }
.nav-link-active { color: var(--text-primary); font-weight: 600; position: relative; }
.nav-link-active::after { content: ''; position: absolute; bottom: -24px; left: 0; width: 100%; height: 2px; background: var(--accent); }

.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--glass-solid); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid var(--border); border-radius: 0.75rem; min-width: 220px; padding: 0.75rem; box-shadow: 0 10px 40px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; gap: 0.25rem; }
.nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item { padding: 0.75rem 1rem; border-radius: 0.5rem; color: var(--text-secondary); font-weight: 500; font-size: 0.85rem; display: block; transition: all 0.2s ease; }
.dropdown-item:hover { background: rgba(243, 128, 32, 0.08); color: var(--accent); transform: translateX(4px); }
.status-badge { font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; background: var(--text-primary); color: var(--bg); border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }


@media (max-width: 800px) {
    /* --- Unified Mobile Responsiveness Engine (Restored) --- */
    .nav-content { flex-direction: column; padding: 1rem; gap: 1rem; }
    .status-badge { display: none; }
    .nav-right { width: 100%; justify-content: center; gap: 0; }
    .nav-links { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; }
    .nav-links > li { padding: 0.25rem 0; }
    .nav-links a { font-size: 0.85rem; }
    .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); }
    
    .hero { padding-top: 10rem; }
    h1 { font-size: clamp(2.25rem, 8vw, 2.75rem); }
}