:root {
    --amp-black: #050505;
    --amp-dark: #121212;
    --amp-charcoal: #1c1c1c;
    --amp-gray: #2d2d2d;
    --amp-light: #f4f4f4;
    --amp-white: #ffffff;
    
    --amp-primary: #ff2a00; /* Performance Red */
    --amp-accent: #ccff00;  /* Electric Lime */
    --amp-highlight: #ff6600; /* Neon Orange */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--amp-black);
    color: var(--amp-white);
    overflow-x: clip;
}

/* Lenis Smooth Scroll Boilerplate */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6, .fw-900 {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.text-primary { color: var(--amp-primary) !important; }
.text-accent { color: var(--amp-accent) !important; }
.text-muted { color: rgba(255, 255, 255, 0.6) !important; }
.bg-black { background-color: var(--amp-black) !important; }
.bg-dark { background-color: var(--amp-dark) !important; }
.bg-charcoal { background-color: var(--amp-charcoal) !important; }
.bg-primary { background-color: var(--amp-primary) !important; }
.bg-accent { background-color: var(--amp-accent) !important; }
.bg-gradient-dark { background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5,5,5,0.9) 100%); }

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-brand {
    font-size: 2rem;
    color: var(--amp-white) !important;
}
.nav-link {
    color: var(--amp-light) !important;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--amp-primary) !important;
}
.dropdown-menu {
    background: var(--amp-dark);
    border: 1px solid var(--amp-gray);
    border-radius: 0;
}
.dropdown-item {
    color: var(--amp-light);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
}
.dropdown-item:hover {
    background: var(--amp-primary);
    color: var(--amp-white);
}

/* Buttons */
.btn-primary {
    background-color: var(--amp-primary);
    border-color: var(--amp-primary);
    color: var(--amp-white);
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--amp-accent);
    z-index: -1;
    transition: all 0.3s ease;
}
.btn-primary:hover::before {
    left: 0;
}
.btn-primary:hover {
    color: var(--amp-black);
    border-color: var(--amp-accent);
}

/* Utilities */
.kinetic-text {
    overflow: hidden;
}
.kinetic-text span {
    display: inline-block;
    transform: translateY(100%);
}

.section-padding {
    padding: 8rem 0;
}

main.page-content:not(:has(.hero-section)) {
    padding-top: 60px;
}

/* Custom Hero Layout */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Offset for fixed navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.4;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--amp-black) 0%, rgba(5,5,5,0.4) 100%);
    z-index: -1;
}

.hero-content {
    margin-top: 80px;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--amp-white);
    margin-bottom: 2rem;
}

.hero-content h1 .outline {
    -webkit-text-stroke: 2px var(--amp-white);
    color: transparent;
}

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
}
.split-col {
    flex: 1 1 50%;
    min-height: 50vh;
    position: relative;
}
.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kinetic Grid */
.kinetic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.kinetic-card {
    background: var(--amp-dark);
    padding: 3rem 2rem;
    border: 1px solid var(--amp-gray);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.kinetic-card:hover {
    border-color: var(--amp-primary);
    transform: translateY(-10px);
}
.kinetic-card h3 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Swiper */
.swiper-slide {
    height: auto;
}

/* Footer */
.footer {
    background: var(--amp-black);
}
