:root {
    /* Color Palette - Premium Dark Theme */
    --bg-color: #0B0E14; /* Deep rich black */
    --surface-color: #151A24; /* Slightly lighter card background */
    --surface-hover: #1E2532;
    --text-main: #FFFFFF;
    --text-muted: #A0ABC0;
    
    /* Accents */
    --accent-primary: #FFB800; /* Baseball Gold */
    --accent-primary-hover: #E0A800;
    --accent-gold: #FFD700; /* Lighter gold for highlights */
    --accent-blue: #1A365D; /* Navy stadium blue */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1100px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-color);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.5);
}

.btn-secondary {
    background-color: var(--surface-color);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--surface-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--text-main);
    padding: 10px 24px;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

/* Layout Blocks */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a:not(.btn) {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav a:not(.btn):hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Dark overlay on top of the image for text readability */
    background: linear-gradient(rgba(11, 14, 20, 0.7), rgba(11, 14, 20, 0.95)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center top; /* Keeps top of the image from being chopped */
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Decorative Glows */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
}

/* Packages Section */
.packages {
    position: relative;
    background: linear-gradient(rgba(11, 14, 20, 0.85), rgba(11, 14, 20, 0.98)), url('images/diamond-bg.png');
    background-size: 50%;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.package-card {
    background: linear-gradient(145deg, var(--surface-color) 0%, rgba(11, 14, 20, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.package-tier {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    font-weight: 800;
    margin-bottom: 16px;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.package-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.package-includes li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.package-includes li::before {
    content: '✓';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Featured Packages */
.featured {
    border-color: rgba(255, 51, 102, 0.3);
    background: linear-gradient(180deg, rgba(255, 51, 102, 0.05) 0%, rgba(21, 26, 36, 1) 100%);
}

.featured .package-tier {
    color: var(--accent-primary);
}

.featured-gold {
    border-color: rgba(255, 184, 0, 0.4);
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.08) 0%, rgba(21, 26, 36, 1) 100%);
}

.featured-gold .package-tier {
    color: var(--accent-gold);
}

/* Scoreboard Tag */
.scoreboard-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(90deg, #05070A 0%, var(--surface-color) 50%, #05070A 100%);
    border-top: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-primary);
}

.stat-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Audit CTA Section */
.audit-cta {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(11, 14, 20, 0.85), rgba(11, 14, 20, 0.85)), url('images/playbook-bg.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--text-main);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    padding: 140px 0;
}

.audit-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audit-content {
    max-width: 700px;
    text-align: center;
}

.audit-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.audit-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.audit-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Contact / Embed Section */
.contact-container {
    max-width: 800px;
}

.form-wrapper {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2px; /* Slight padding for inner iframe to fit nicely */
    min-height: 500px; /* Base height for the form */
    display: flex;
    justify-content: center;
    align-items: center;
}

.tally-placeholder {
    text-align: center;
    padding: 60px;
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.placeholder-sub {
    color: rgba(255,255,255,0.4);
}

.placeholder-sub code {
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #05070A;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Explainer Panel */
.explainer-graphic {
    width: 100%;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.explainer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .nav {
        gap: 15px;
    }

    .nav a:not(.btn) {
        font-size: 0.9rem;
    }
    
    .nav .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .audit-content h2 {
        font-size: 2.2rem;
    }
    
    .audit-list {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .explainer-graphic {
        border-radius: 8px;
    }
}

/* Legal Page Styles */
.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-container {
    max-width: 900px;
}

.legal-toc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.legal-toc h3 {
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-toc a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: var(--accent-primary);
}

.legal-content section {
    margin-bottom: 60px;
    padding-top: 20px;
}

.legal-content h3 {
    color: var(--accent-primary);
    margin-bottom: 24px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h4 {
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.legal-content ul {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.back-to-top {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    text-decoration: none;
}

.back-to-top:hover {
    text-decoration: underline;
}
