:root {
    --primary: #006a40;
    --primary-600: #005a36;
    --primary-700: #034e30;
    --accent: #00b273;
    --bg: #0b1713;
    --muted: #0f2019;
    --text: #ecf6f1;
    --text-dim: #cfe5dc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--muted);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 23, 19, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand a {
    text-decoration: none;
    color: white;
}

.logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow)
}

.logo img {
    width: 25px;
    height: 25px;
}

.brand-name {
    font-weight: 700;
    letter-spacing: .5px
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    opacity: .9
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: var(--shadow)
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05)
}

.btn-ghost {
    color: #bfe9d5;
    border-color: rgba(191, 233, 213, .35);
    background: transparent
}

.btn-ghost:hover {
    background: rgba(191, 233, 213, .08)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    padding: 8px 14px
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .06)
}

.btn-light {
    background: #e7fff4;
    color: var(--primary);
    font-weight: 700
}

.btn-block {
    width: 100%;
    padding: 14px 18px
}

.hero {
    position: relative;
    padding: 104px 0 32px;
    background: var(--muted);
}

.mt6 {
    margin-top: 24px;
}

/* Improve readability with a subtle dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .45) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Ensure background shapes sit below the overlay */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .grid {
    display: none;
}

.blob {
    display: none;
}

.blob.b1 {
    width: 420px;
    height: 420px;
    background: #00b273;
    top: -60px;
    left: -80px;
    opacity: .45
}

.blob.b2 {
    width: 500px;
    height: 500px;
    background: #006a40;
    right: -120px;
    top: 80px;
    opacity: .35
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    margin: 6px 0 12px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-text p {
    color: #edf8f3;
    margin: 0 0 18px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.bullets {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    color: #e6f6ef
}

.bullets li {
    margin: 6px 0;
    position: relative;
    padding-left: 22px
}

.bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent))
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.card-header {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #ffcc00);
    box-shadow: 0 0 10px rgba(255, 204, 0, .5)
}

.card-body {
    padding: 16px
}

.card-body h3 {
    margin: 0 0 12px
}

.match-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px
}

.match-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .06)
}

.team strong {
    display: block
}

.team small {
    color: var(--text-dim)
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 700;
    margin-right: 8px
}

.chip {
    background: transparent;
    color: #d8ffee;
    border: 1px solid rgba(216, 255, 238, .35);
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
    transition: .2s
}

.chip:hover {
    background: rgba(216, 255, 238, .08)
}

.section {
    padding: 64px 0;
    background: var(--muted);
}

.section.light {
    background: #ffffff;
}

.section.light .section-title {
    color: #0a1612
}

.section.light p {
    color: #29463b
}

.section.light .store-badges {
    gap: 16px
}

.section.light .store-badge {
    background: #ffffff;
    border: 1px solid #e5e8eb;
}

.section.muted {
    background: var(--muted)
}

.section-title {
    text-align: center;
    margin: 0 0 28px;
    font-size: clamp(22px, 3vw, 34px)
}

/* Store badges */
.store-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    color: #fff;
    transition: .2s;
}

.store-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 178, 115, .45)
}

.store-badge .logo {
    width: 26px;
    height: 26px;
    flex: 0 0 auto
}

.store-badge .text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.store-badge .text em {
    font-style: normal;
    font-size: 11px;
    opacity: .9;
    color: #d8ffee
}

.store-badge .text strong {
    font-size: 15px;
    color: #fff
}

.store-badge.app-store {
    color: #fff
}

.store-badge.google-play {
    color: #fff
}

/* Image badges */
.store-badge .store-img {
    height: 48px;
    width: auto;
    display: block;
}

@media (max-width:520px) {
    .store-badge .store-img {
        height: 35px
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 18px;
    transition: .25s;
    position: relative;
    overflow: hidden
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 178, 115, .5)
}

.feature-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #e7fff4;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: var(--shadow);
    margin-bottom: 10px
}

.feature-card h3 {
    margin: 8px 0 6px
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.step {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 18px;
    position: relative
}

.step-num {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent))
}

.cta-strip {
    background: var(--muted);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.cta-inner h3 {
    margin: 0
}

.contact-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text);
    padding: 12px 12px;
    border-radius: 10px;
    outline: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a9c8bc
}

.form-note {
    color: var(--text-dim);
    text-align: center;
    margin-top: 10px
}

.site-footer {
    padding: 20px 0;
    background: #0a1612;
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: auto;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 12px
}

@media (max-width:980px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .features-grid {
        grid-template-columns: 1fr 1fr
    }

    .steps {
        grid-template-columns: 1fr
    }
}

@media (max-width:720px) {
    .features-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 40px 0;
    }

    .nav {
        position: relative
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: min(92%, 720px);
        flex-direction: column;
        gap: 0;
        background: rgba(10, 22, 18, .98);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
        z-index: 1001
    }

    .nav-links a {
        padding: 12px 10px;
        border-radius: 8px
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, .06)
    }

    .nav-links.open {
        display: flex
    }

    .nav-toggle {
        display: block
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .cta-inner {
        flex-direction: column;
        text-align: center
    }

    .footer-inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer-inner a {
        font-size: 14px;
    }

    .footer-inner p {
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* end of file */
