:root {
    --primary-color: #f37021; /* Logo Orange */
    --secondary-color: #3d1406; /* Logo Deep Brown */
    --accent-color: #ffc20e; /* Logo Golden Yellow */
    --text-color: #2b1d16; /* Dark Brown for readability */
    --light-bg: #fffbf5; /* Warm off-white */
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(61, 20, 6, 0.15);
    --transition: all 0.3s ease;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--border-radius) 0;
}
.skip-link:focus { top: 0; }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(61, 20, 6, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.logo img {
    height: 56px;
    margin-right: 25px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

nav ul li a:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #3d1406 0%, #7c2e14 100%);
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #e5af0d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 194, 14, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Featured Product Section */
.product-featured {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h2 {
    font-size: 2.8rem;
    margin: 15px 0;
    color: var(--secondary-color);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin: 25px 0;
}

.features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.platform-info {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.platform {
    padding: 6px 16px;
    border-radius: 4px;
    background: #eee;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
}

.platform.active {
    background: var(--primary-color);
    color: var(--white);
}

.mockup-placeholder {
    background: var(--white);
    border-radius: 30px;
    aspect-ratio: 9/16;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 8px solid var(--secondary-color);
    overflow: hidden;
}

.mockup-img {
    width: 80%;
}

/* Products List */
.products-list {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--white);
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.product-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-card.disabled {
    opacity: 0.7;
    background-color: #f9f9f9;
}

.status {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

.text-link:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Announcements */
.announcements {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.announcement-item {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(61, 20, 6, 0.05);
    border-left: 5px solid var(--primary-color);
}

.date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.announcement-item h3 {
    color: var(--secondary-color);
    margin: 10px 0;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    text-align: center;
}

.newsletter-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 40px;
    border-radius: 24px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(61, 20, 6, 0.3);
}

.newsletter-card h2 {
    margin-bottom: 15px;
    color: var(--accent-color);
    font-size: 2.5rem;
}

.newsletter-card p {
    margin-bottom: 35px;
    opacity: 0.9;
    font-size: 1.1rem;
}

#email-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

#email-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
}

#email-input:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 0;
}

/* Footer */
footer {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Product Specific Pages - Hero Carousel */
.product-hero-carousel {
    padding: 60px 0 0;
    background-color: var(--white);
    text-align: center;
}

.hero-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-intro h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin: 15px 0;
}

.platform-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.hero-carousel-wrapper {
    background-color: var(--light-bg);
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-image .mockup-placeholder {
    border-radius: 40px;
    max-width: 360px;
    border: 12px solid var(--secondary-color);
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 48px; /* Default height */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.platform-badges .platform-btn {
    height: 48px; /* Base height to align with badge scale */
}

.platform-btn.android {
    background-color: #3ddc84; /* Android Green */
    color: #000;
}

.platform-btn.ios {
    background-color: #3ddc84;
    color: #000;
}

.platform-btn.disabled {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.platform-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.platform-btn.disabled:hover { opacity: 0.7; transform: none; cursor: not-allowed; }
.platform-btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: var(--border-radius);
}

/* Feature List */
.product-features {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.product-features h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Forms */
.feedback-section, .waitlist-form-section {
    padding: 100px 0;
}

.form-card {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-card.highlight {
    border: 2px solid var(--accent-color);
}

.form-card h2 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stack-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: var(--secondary-color);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
#email-input::placeholder {
    color: #aaa;
    opacity: 1;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Waitlist Hero */
.waitlist-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.waitlist-hero h1 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 3.5rem;
}

/* Utility */
.hidden, .hp-field {
    display: none !important;
}

#sport-other-text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: var(--transition);
}

#sport-other-text:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1);
}

.success {
    color: #2fb344;
    margin-top: 20px;
    font-weight: 700;
}

/* App Screenshots & Carousel */
.mockup-container {
    max-width: 240px;
    margin: 0 auto;
    border: 6px solid var(--secondary-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mockup-img-main {
    width: 100%;
    display: block;
}

.app-gallery {
    margin-top: 80px;
    text-align: center;
}

.app-gallery h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

.screenshot-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.screenshot-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.screenshot-item {
    flex: 0 0 270px; /* Roughly 25% of a standard mobile screen width */
    scroll-snap-align: center;
    transition: var(--transition);
}

.screenshot-item img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.screenshot-item p {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: var(--shadow);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

@media (max-width: 768px) {
    .carousel-container {
        padding: 0;
    }
    .carousel-btn {
        display: none;
    }
}

/* Detailed Feature Grid */
.feature-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-block {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-block .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-block h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.feature-block p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-block.premium {
    background-color: var(--white);
    color: var(--text-color);
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.feature-block.premium h3 {
    color: var(--secondary-color);
}

.premium-content {
    flex: 1;
}

.premium-image {
    flex: 0 0 200px;
}

.premium-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .feature-block.premium {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-image {
        flex: 0 0 auto;
        max-width: 200px;
        order: -1;
    }
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.bullet-list li::before {
    content: "🏒";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Product Outro */
.product-outro {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
}

.product-outro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-outro .slogan {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 20px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-item h3::before {
    content: "Q: ";
    color: var(--secondary-color);
    font-weight: 800;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    padding-left: 25px;
    border-left: 2px solid var(--accent-color);
}

/* Video Embed */
.video-wrapper {
    max-width: 850px;
    margin: 50px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: #000;
    border: 4px solid rgba(255,255,255,0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .logo img {
        height: 48px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    #email-form {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    footer {
        padding: 36px 0;
    }

    .form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
