/* RESET & BASE STYLES */
:root {
    --bg-color: #050505; /* Deep black */
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --gold-primary: #D4AF37;
    --gold-light: #FEDC56;
    --gold-dark: #AA8A28;
    --gold-gradient: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* LAYOUT UTILS */
.container {
    width: 100%;
    max-width: 800px; /* Distraction free narrow column */
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* TYPOGRAPHY */
.headline {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    /* Optional: subtle text shadow for lift */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2); 
}

.subheadline {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gold-primary); /* Gold headings */
}

/* HERO SECTION */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.video-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border: 1px solid var(--gold-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); /* Gold glow */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA BUTTONS */
.cta-container {
    text-align: center;
    width: 100%;
}

.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 1.2rem 2rem;
    background: var(--gold-gradient);
    color: #000; /* Black text on gold for contrast */
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.cta-subtext {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.8rem;
}

/* CONTENT SECTIONS */
.content-section {
    margin-bottom: 4rem;
    padding: 0 0.5rem;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-list {
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.gold-checks li::before {
    color: var(--gold-light); 
}

/* CARDS GRID (Why this works) */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: var(--gold-dark);
}

.card h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* FOOTER */
.footer {
    border-top: 1px solid #222;
    padding: 3rem 1.5rem;
    background: #080808;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

.footer-links {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.legal-block h4 {
    color: #777;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-block p {
    line-height: 1.5;
}

/* STICKY CTA (Mobile) */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.sticky-cta-mobile.visible {
    transform: translateY(0);
}

.small-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .legal-block {
        flex: 1;
        padding-right: 2rem;
    }

    /* Hide sticky CTA on large screens if desired, user said mobile first but usually desktop doesn't need sticky bar covering content */
    /* keeping it helps conversion though, let's keep logic but maybe optional. User requested "Sticky CTA on mobile after scroll". */
    .sticky-cta-mobile {
        display: none; /* Hide on desktop as requested implicitly by "Sticky CTA on mobile" */
    }
}
