/* Base & Typography */
:root {
    --color-black: #111111;
    --color-dark-gray: #222222;
    --color-white: #ffffff;
    --color-orange: #FF4500;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-white);
    background-color: var(--color-black);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.font-inter { font-family: 'Inter', sans-serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.bg-black { background-color: var(--color-black); }
.bg-dark-gray { background-color: var(--color-dark-gray); }
.bg-orange { background-color: var(--color-orange); }
.text-white { color: var(--color-white); }
.text-orange { color: var(--color-orange); }
.text-black { color: var(--color-black); }
.text-center { text-align: center; }

/* Utility Classes (mimicking Tailwind-like spacing) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hidden { display: none !important; } /* For Netlify honeypot */


/* Header */
.header {
    background-color: var(--color-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo-link img {
    height: 2.5rem; /* Adjust logo size */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary-nav { /* Orange button in nav */
    background-color: var(--color-orange);
    color: var(--color-white);
}
.btn-primary-nav:hover {
    background-color: #e53900; /* Darker orange */
}
.btn-primary-cta { /* Large Orange button in Hero */
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    background-color: var(--color-orange);
    color: var(--color-white);
}
.btn-primary-cta:hover {
    background-color: #e53900;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}
.btn-secondary-cta { /* Black button in Waiting List */
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    background-color: var(--color-black);
    color: var(--color-white); /* White text on black button */
    border: 2px solid var(--color-black); /* Strong border */
}
.btn-secondary-cta:hover {
    background-color: var(--color-dark-gray); /* Slightly lighter black on hover */
    color: var(--color-orange); /* Orange text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


/* Section Headlines */
.headline-xl {
    font-size: 3.5rem; /* 56px */
    font-weight: 900; /* Extra Black */
    line-height: 1.1;
}
.subhead-lg {
    font-size: 1.35rem; /* ~22px */
    font-weight: 400;
}
.section-headline {
    font-size: 2.5rem; /* 40px */
    font-weight: 800;
    line-height: 1.2;
}

/* Pain & Proof Section */
.pain-proof-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.problem-stats .stat-card {
    padding: 1.5rem;
}
.stat-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.stat-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--color-orange);
}
.stat-description {
    font-size: 1rem;
    color: #ccc;
}
.testimonial-card {
    background-color: var(--color-black);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 69, 0, 0.2); /* Subtle orange border */
}
.testimonial-result {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.testimonial-quote {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.testimonial-author {
    font-size: 0.9rem;
    color: #aaa;
}


/* How It Works Section */
.step-card {
    background-color: var(--color-dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    padding-top: 4rem; /* Space for number */
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.2);
}
.step-number {
    position: absolute;
    top: -20px; /* Half out of the card */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.5);
    border: 3px solid var(--color-black);
}
.step-title {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}
.step-description {
    color: #ccc;
}


/* Key Features Section */
.feature-card {
    background-color: var(--color-black);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}
.feature-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.feature-description {
    color: #ccc;
}


/* Waiting List Section (Final Conversion) */
.waiting-list-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.waiting-list-form {
    background-color: var(--color-white);
    color: var(--color-black);
}
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--color-black);
    background-color: var(--color-white);
}
.form-input:focus {
    border-color: var(--color-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.2);
}
textarea.form-input {
    min-height: 80px;
    resize: vertical;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* Responsive Design (Basic Media Queries) */
@media (min-width: 768px) {
    .headline-xl { font-size: 4.5rem; }
    .subhead-lg { font-size: 1.5rem; }
    .section-headline { font-size: 3rem; }
    
    .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    
    .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .md\:p-12 { padding: 3rem; }
}

@media (min-width: 1024px) {
    .headline-xl { font-size: 5.5rem; }
    .section-headline { font-size: 3.5rem; }
    
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.text-highlight-bold {
    font-weight: 700; /* Ensure it's bold */
    text-decoration: underline; /* Add the underline */
    text-decoration-color: var(--color-orange); /* Make the underline orange */
    text-decoration-thickness: 2px; /* Adjust thickness as desired */
}

.hero-section {
    position: relative; /* Establish positioning context */
    overflow: hidden; /* Ensure video doesn't spill out */
    background-color: var(--color-black); /* Fallback background if video doesn't load */
    display: flex; /* Use flex to center content vertically */
    align-items: center; /* Center content vertically */
    min-height: 80vh; /* Ensure hero section takes up significant height */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Place behind text */
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area without distortion */
    filter: brightness(0.7); /* Slightly dim the video for text contrast */
}

.video-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hide by default, shown if video fails */
}

/* CSS for the overlay to ensure text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Place above video, below text */
}

/* Ensure the container with text is above the video and overlay */
.hero-section .container {
    position: relative;
    z-index: 2; /* Higher than overlay and video */
}

/* For browsers that might not autoplay or have issues, show the fallback */
.video-element:not([autoplay]) + .video-fallback-image {
    display: block;
}