/* Premium Design Tokens */
:root {
    --white: #ffffff;
    --black: #000000;
    --soft: #f5f5f7;
    --text-main: #1d1d1f;
    --text-muted: #6e6e73;
    --accent: #0071e3;
    --border: rgba(0, 0, 0, 0.08);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text-main); font-family: var(--font); -webkit-font-smoothing: antialiased; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 120px 0; }
.bg-soft { background: var(--soft); }
.bg-black { background: var(--black); color: #fff; }

/* Typography */
h1, h2, h3, h4 { letter-spacing: -0.04em; line-height: 1.1; }
.section-label { font-size: 12px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 24px; letter-spacing: 2px; }
.section-heading { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 40px; }
.section-heading-white { color: #fff; font-size: 2.8rem; font-weight: 800; margin-bottom: 48px; }

/* Navbar Glassmorphism */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; transition: var(--ease); background: rgba(255,255,255,0.7); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { height: 72px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; color: #000; font-size: 1.4rem; }
.logo-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 8px; }
.logo span span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-main); font-size: 14px; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero Cinematic */
.hero { position: relative; height: 100vh; display: flex; align-items: center; text-align: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)); }
.badge { display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 12px; margin-bottom: 32px; backdrop-filter: blur(10px); }
.headline { font-size: clamp(3rem, 10vw, 5rem); font-weight: 800; margin-bottom: 32px; }
.text-gradient { background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tagline { font-size: 1.5rem; color: rgba(255,255,255,0.8); max-width: 800px; margin: 0 auto 48px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 100px; text-decoration: none; font-weight: 600; transition: var(--ease); cursor: pointer; border: none; }
.btn-black { background: #000; color: #fff; }
.btn-white { background: #fff; color: #000; }
.btn-blur { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-outline { border: 1px solid var(--border); color: #000; }
.btn:hover { transform: scale(1.02); opacity: 0.9; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; }

/* Stats Animation */
.section-stats { padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: flex; justify-content: space-between; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 800; letter-spacing: -3px; }
.stat-suffix { color: var(--accent); font-size: 2rem; font-weight: 800; }

/* Cards & Layout */
.editorial-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.p-editorial { font-size: 1.4rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 32px; }

.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { padding: 48px; background: #fff; border: 1px solid var(--border); border-radius: 24px; transition: var(--ease); }
.card-num { font-size: 14px; font-weight: 800; color: var(--accent); display: block; margin-bottom: 24px; }
.card h4 { font-size: 1.5rem; margin-bottom: 16px; }

.career-link { display: flex; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; text-decoration: none; font-size: 1.4rem; font-weight: 500; transition: 0.3s; }
.career-link:hover { color: var(--accent); padding-left: 12px; }

.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.media-box { width: 100%; aspect-ratio: 16/10; border-radius: 20px; overflow: hidden; margin-bottom: 16px; background: #eee; }
.media-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s var(--ease); }
.showcase-item:hover img { transform: scale(1.05); }

/* CTA Box */
.cta-box { background: var(--soft); padding: 100px 40px; border-radius: 48px; text-align: center; }
.cta-box h2 { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 48px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; }

/* Footer */
.footer { padding: 60px 0; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .container { padding: 0 24px; }
    .nav-links, .nav-inner .btn-black { display: none; }
    .editorial-grid, .focus-grid, .showcase-grid, .stats-grid, .grid-2 { grid-template-columns: 1fr; display: block; }
    .stat-item { margin-bottom: 40px; }
    .card, .showcase-item { margin-bottom: 24px; }
    .cta-btns { flex-direction: column; }
    .cta-btns .btn { width: 100%; }
}