:root {
    --bg-main: #0a0a0a; --bg-secondary: #161616;
    --accent: #ff4500; --text-light: #ffffff; --text-muted: #a0a0a0;
    --font-head: 'Oswald', system-ui, sans-serif; --font-body: 'Inter', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-main); color: var(--text-light); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }

/* Navigation */
nav { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 10, 10, 0.95); border-bottom: 2px solid var(--accent); z-index: 1000; }
.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--text-light); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; z-index: 1001; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-light); text-decoration: none; font-size: 1rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.menu-toggle span { width: 30px; height: 3px; background: var(--text-light); transition: 0.3s; }

/* Layouts */
.section-padding { padding: 120px 5%; max-width: 1400px; margin: 0 auto; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }
.section-short { min-height: auto; padding: 80px 5%; max-width: 1400px; margin: 0 auto; }
.bg-alt { background-color: var(--bg-secondary); width: 100%; }

/* Typography */
h1 { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 6rem); line-height: 1.1; text-transform: uppercase; margin-bottom: 1.5rem; }
h2 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; margin-bottom: 1.5rem; color: var(--accent); }
p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin-bottom: 2rem; }

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; width: 100%; }
.card { background: var(--bg-secondary); padding: 3rem 2rem; border-top: 4px solid transparent; transition: 0.3s; text-align: center; border-radius: 4px; }
.card:hover { border-top-color: var(--accent); transform: translateY(-5px); background: #222; }
.card h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 1rem; text-transform: uppercase; }

/* Pricing */
.pricing-card { background: var(--bg-secondary); padding: 3rem; text-align: center; border: 1px solid #333; border-radius: 4px; }
.pricing-card.featured { border-color: var(--accent); transform: scale(1.05); }
.price { font-family: var(--font-head); font-size: 4rem; color: var(--accent); margin: 1.5rem 0; }
.price span { font-size: 1rem; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid #333; color: var(--text-muted); }

/* Buttons */
.btn { display: inline-block; background: var(--accent); color: #fff; padding: 15px 35px; font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; text-decoration: none; font-weight: bold; border: 2px solid var(--accent); transition: 0.3s; text-align: center; white-space: nowrap; }
.btn:hover { background: transparent; color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-main); flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.4s ease; z-index: 1000; }
    .nav-links.active { transform: translateY(0); }
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .grid-3 { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .section-padding { padding: 100px 5% 40px; }
}
/* =========================================
   AWARDS-LEVEL UPGRADES
   ========================================= */

/* Hero Parallax Setup */
.hero-container { position: relative; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: left; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 120%; background-size: cover; background-position: center; z-index: 1; will-change: transform; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; width: 100%; margin-top: 80px; }
.hero-subtext { font-size: 1.25rem; max-width: 500px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* Non-Stop Glitch Animation */
.glitch-text span { color: var(--accent); display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.02); text-shadow: 0 0 20px var(--accent); } 100% { transform: scale(1); } }

/* Glowing Button */
.btn-glow { box-shadow: 0 0 20px rgba(255, 69, 0, 0.4); animation: breathe 3s infinite alternate; }
@keyframes breathe { from { box-shadow: 0 0 10px rgba(255, 69, 0, 0.2); } to { box-shadow: 0 0 30px rgba(255, 69, 0, 0.8); } }

/* Infinite Marquee */
.marquee-container { background: var(--accent); padding: 20px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 10; border-top: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-2deg); margin: -20px -10px 40px; width: calc(100% + 20px); }
.marquee-content { display: inline-block; animation: marquee 15s linear infinite; font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; }
.marquee-content span { padding: 0 2rem; color: #fff; }
.marquee-content .outline-text { color: transparent; -webkit-text-stroke: 2px #fff; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Aggressive Card Hovers */
.card { position: relative; overflow: hidden; z-index: 1; border: 1px solid #333; border-radius: 0; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--accent); z-index: -1; transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1); }
.card:hover::before { transform: scaleY(1); }
.card:hover h3, .card:hover p { color: #fff; }

/* Parallax Break Fold */
.parallax-break { height: 60vh; background-attachment: fixed; background-position: center; background-size: cover; position: relative; display: flex; align-items: center; justify-content: center; }
.overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.parallax-break h2 { position: relative; z-index: 2; font-size: clamp(3rem, 8vw, 7rem); color: #fff; -webkit-text-stroke: 2px var(--accent); color: transparent; }

/* GSAP Initial States */
.gs-reveal, .gs-slide-up, .gs-slide-right, .gs-scale { opacity: 0; visibility: hidden; }