:root {
    --nav-height: 76px;
    --green-900: #1A2E0A;
    --green-800: #2D5016;
    --green-700: #3A6B1C;
    --green-500: #4CAF50;
    --gray-900: #222;
    --gray-700: #555;
    --gray-600: #666;
    --gray-300: #d8e5d8;
    --gray-200: #e8f5e8;
    --gray-100: #eef5ef;
    --bg-light: #f8fffe;
    --white: #fff;
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--gray-600);
    max-width: 700px;
    margin: 0.5rem auto 0;
}

.eyebrow-single {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--green-900);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 0.95rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-800);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-800);
}

.btn-secondary {
    background: var(--green-800);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(45, 80, 22, 0.25);
}

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

.btn-primary:focus,
.btn-secondary:focus,
.btn-ghost:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--green-800);
    outline-offset: 3px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero */
.site-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--gray-200) 100%);
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232D5016' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 3vw, 4rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.eyebrow {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.pill-live {
    background: linear-gradient(135deg, var(--green-800), var(--green-500));
    color: var(--white);
    box-shadow: 0 12px 26px rgba(45, 80, 22, 0.25);
}

.pill-muted {
    background: var(--gray-100);
    color: var(--green-900);
    border: 1px solid var(--gray-300);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    color: var(--white);
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    box-shadow: 0 14px 28px rgba(45, 80, 22, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(45, 80, 22, 0.32);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--green-900);
    border: 1.5px solid var(--gray-300);
    padding: 1rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--green-800);
    color: var(--green-800);
    box-shadow: 0 10px 22px rgba(45, 80, 22, 0.12);
    transform: translateY(-2px);
}

.launch-timer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: var(--white);
    padding: 1.25rem 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.timer-label h3 {
    color: var(--green-800);
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
}

.timer-label p {
    color: var(--gray-600);
    font-size: 0.98rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    color: var(--white);
    padding: 1.1rem 0.85rem;
    border-radius: 14px;
    min-width: 82px;
    box-shadow: 0 10px 22px rgba(45, 80, 22, 0.28);
}

.time-unit span {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.05;
}

.time-unit label {
    font-size: 0.8rem;
    opacity: 0.92;
    font-weight: 600;
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
}

.email-signup {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.signup-copy h3 {
    color: var(--green-800);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.signup-copy p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.signup-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.signup-form input {
    padding: 0.95rem 1.15rem;
    border: 2px solid #e0e0e0;
    border-radius: 999px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.signup-form input:focus {
    border-color: var(--green-800);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.08);
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    max-width: 100%;
    aspect-ratio: 3 / 6;
    background: #000;
    border-radius: 42px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--gray-200) 100%);
    border-radius: 28px;
    overflow: hidden;
}

.app-preview {
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}

.mock-title {
    font-weight: 800;
    color: var(--green-800);
    font-size: 1.1rem;
}

.mock-location {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.mock-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-match {
    background: var(--white);
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.match-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.match-details {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.match-type {
    font-size: 0.8rem;
    color: var(--green-800);
    font-weight: 600;
}

.join-btn {
    background: var(--green-800);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(45, 80, 22, 0.25);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.badge span {
    display: block;
    font-weight: 800;
    color: var(--green-800);
    font-size: 1.15rem;
}

.badge small {
    color: var(--gray-600);
}

/* Highlights */
.pillars {
    background: var(--bg-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-800);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--gray-100);
    font-size: 1.4rem;
}

.pillar-card h3 {
    margin-bottom: 0.3rem;
    color: var(--green-900);
    font-size: 1.1rem;
    font-weight: 800;
}

.pillar-card p {
    color: var(--gray-700);
    line-height: 1.55;
}

/* Features */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.2rem 1.9rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    border-color: var(--green-800);
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1.1rem;
    display: inline-flex;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* How it works */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.step-card {
    background: var(--bg-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-800);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green-800), var(--green-500));
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.step-card h3 {
    font-size: 1.15rem;
    color: var(--green-900);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--gray-700);
    line-height: 1.55;
}

/* About */
.about {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--gray-200) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.stat {
    text-align: left;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-800);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-top: 0.35rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.football-animation {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--green-500), var(--green-800));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.football {
    font-size: 4rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.field-lines {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.25) 50%, transparent 51%),
                linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.25) 50%, transparent 51%);
    background-size: 52px 52px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-18px); }
    60% { transform: translateY(-10px); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 92%;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.modal-header h3 {
    color: var(--green-800);
    font-size: 1.4rem;
    font-weight: 800;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--gray-600);
    padding: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.modal-body p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

/* Footer */
.footer {
    background: var(--green-900);
    color: var(--white);
    padding: 3rem 0 1.4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--green-500);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d9e7d6;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-section ul li a:hover {
    color: var(--green-500);
}

.footer-section p {
    color: #d9e7d6;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #d9e7d6;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #d9e7d6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--green-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        max-width: 760px;
        margin: 0 auto;
    }
    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }
    .launch-timer {
        grid-template-columns: 1fr;
    }
    .signup-form {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding-top: calc(var(--nav-height) + 1.25rem);
    }
    .hero-content {
        gap: 1.75rem;
    }
    .section {
        padding: 4.2rem 0;
    }
}

@media (max-width: 540px) {
    .hero-text h1 {
        font-size: 2.35rem;
    }
    .hero-description {
        font-size: 1.05rem;
    }
    .pill {
        font-size: 0.9rem;
    }
    .launch-timer,
    .email-signup {
        padding: 1.25rem;
    }
    .feature-card,
    .pillar-card,
    .step-card,
    .stat {
        padding: 1.2rem;
    }
    .phone-mockup {
        width: 260px;
    }
    .container {
        padding: 0 16px;
    }
}
