:root {
    /* Primary Brand Colors */
    --primary: #F24602;
    --primary-rgb: 242, 70, 2;
    --primary-soft: #FF7311;
    
    /* Neutral Palette */
    --black: #0A0A0B;
    --dark-grey: #161618;
    --medium-grey: #262629;
    --light-grey: #A1A1AA;
    --white: #FFFFFF;
    
    /* Semantic Colors */
    --bg-main: var(--black);
    --text-main: var(--white);
    --text-muted: var(--light-grey);
    
    /* Layout Tokens */
    --section-padding: clamp(4rem, 10vh, 8rem);
    --container-max-width: 1200px;
    
    /* Typography Tokens */
    --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Layout Utilities --- */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* --- Video Background --- */

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0.8) 0%,
        rgba(10, 10, 11, 0.4) 50%,
        rgba(10, 10, 11, 0.9) 100%
    );
    z-index: -1;
}

/* --- Glassmorphism & Effects --- */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.glow-text {
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.display-1 span.glow-text {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.1;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* --- Typography --- */

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
}

.display-2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* --- Buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
    background: var(--primary-soft);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Sections --- */

/* Hero Section */
.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-badge {
    padding: 0.5rem 1rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 1px solid var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.price-header {
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 600;
}

.price-value span {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: '✓';
    margin-right: 1rem;
    color: var(--primary);
}

/* --- Animations --- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Adjustments --- */

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
}

/* Custom Scrollbar for modern look */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--medium-grey);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
