:root {
    --navy: #031624;
    --navy2: #061f33;
    --green: #35a852;
    --green2: #58c46b;
    --blue: #1d6be3;
    --orange: #f28a18;
    --text: #101827;
    --muted: #667085;
    --card: #fff;
    --line: #e7edf2;
    --soft: #f5f9f6
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55
}

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

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

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #031624;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.navin {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -1px
}

.brand span {
    color: var(--green)
}

.menu {
    display: flex;
    gap: 28px;
    align-items: center;
    font-weight: 700;
    font-size: 14px
}

.menu a.active,
.menu a:hover {
    color: var(--green)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 9px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer
}

.btn.green {
    background: linear-gradient(135deg, var(--green), #23883d);
    color: #fff
}

.btn.dark {
    background: #071927;
    color: #fff;
    border-color: #294052
}

.btn.light {
    background: #fff;
    color: #0b1724;
    border-color: #d8e0e7
}

.btn.blue {
    background: #1769df;
    color: #fff
}

.btn.orange {
    background: #f28a18;
    color: #fff
}

.hero {
    background: radial-gradient(circle at 78% 35%, rgba(54, 168, 82, .45), transparent 28%), linear-gradient(90deg, #031624 0%, #05243a 55%, #0b3a29 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, .25), rgba(255, 255, 255, .04));
    pointer-events: none
}

.hero .container {
    position: relative;
    z-index: 1
}

.hero-grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center
}

.kicker {
    color: var(--green2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px
}

.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 14px 0 18px;
    letter-spacing: -2px
}

.hero h1 span,
.green-text {
    color: var(--green2)
}

.hero p {
    font-size: 19px;
    max-width: 650px;
    color: #d9e6ee
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-card {
    background: rgba(5, 22, 36, .78);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .3)
}

.visual {
    height: 370px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02)), url('assets/pattern.svg');
    background-size: cover;
    display: flex;
    align-items: end;
    padding: 24px
}

.scorebox {
    margin-left: auto;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    padding: 18px 28px
}

.scorebox b {
    display: block;
    font-size: 30px
}

.section {
    padding: 72px 0
}

.section.soft {
    background: #f7faf8
}

.title {
    text-align: center;
    margin-bottom: 34px
}

.title h2 {
    font-size: 36px;
    line-height: 1.15;
    margin: 6px 0 8px;
    letter-spacing: -1px
}

.title p {
    color: var(--muted);
    max-width: 760px;
    margin: auto
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .05)
}

.card.tint-green {
    background: linear-gradient(135deg, #f1fbf3, #fff)
}

.card.tint-blue {
    background: linear-gradient(135deg, #eef6ff, #fff)
}

.card.tint-orange {
    background: linear-gradient(135deg, #fff5e9, #fff)
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf7ed;
    color: var(--green);
    font-size: 24px;
    margin-bottom: 18px
}

.icon.blue {
    background: #eaf2ff;
    color: var(--blue)
}

.icon.orange {
    background: #fff0df;
    color: var(--orange)
}

.card h3 {
    font-size: 22px;
    margin: 0 0 10px
}

.card p,
.small {
    color: var(--muted)
}

.stats {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .16)
}

.stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.stat:last-child {
    border: 0
}

.stat b {
    font-size: 27px;
    display: block
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    text-align: center
}

.step .bubble {
    margin: auto auto 12px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #edf8ef;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center
}

.imagebox {
    min-height: 320px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0b2b45, #0f6b3d);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    position: relative;
    overflow: hidden
}

.imagebox:after {
    content: "🏏";
    position: absolute;
    font-size: 150px;
    right: 30px;
    bottom: -30px;
    opacity: .18
}

.list {
    display: grid;
    gap: 12px
}

.list div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line)
}

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

.profile {
    overflow: hidden;
    padding: 0
}

.profile .photo {
    height: 180px;
    background: linear-gradient(135deg, #b8d6c7, #17364b);
    position: relative
}

.profile .photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/pattern.svg') center/cover;
    opacity: .25
}

.profile .body {
    padding: 20px
}

.tag {
    display: inline-block;
    border-radius: 20px;
    background: #e9f7ed;
    color: #24883d;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800
}

.searchbar {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    margin-top: -38px;
    position: relative;
    z-index: 2
}

.input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #dbe3eb;
    border-radius: 10px;
    font: inherit
}

.footer {
    background: #031624;
    color: #cfe0ea;
    padding: 50px 0 24px
}

.footgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 30px
}

.footer h4 {
    color: #fff;
    margin: 0 0 14px
}

.footer a {
    display: block;
    margin: 8px 0;
    color: #cfe0ea
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 30px;
    padding-top: 20px;
    color: #91a4b1
}

.formcard {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(16, 24, 40, .08)
}

.formgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.full {
    grid-column: 1/-1
}

.login-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 760px
}

.login-left {
    background: linear-gradient(135deg, #031624, #07314a);
    color: #fff;
    padding: 70px
}

.login-right {
    padding: 70px;
    background: #f7faf8
}

.tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
    margin: 25px 0
}

.tabs span {
    padding: 14px 34px;
    font-weight: 800
}

.tabs .active {
    color: var(--green);
    border-bottom: 3px solid var(--green)
}

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

.reg-head {
    /* height: 220px; */
    color: #fff;
    padding: 30px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(135deg, #071927, #174b31)
}

.reg-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
}

.reg-card form {
    padding: 24px
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr .8fr;
    gap: 28px
}

.article {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 18px;
    border-bottom: 1px solid var(--line)
}

.thumb {
    border-radius: 14px;
    background: linear-gradient(135deg, #d4ead8, #0d2d43);
    min-height: 130px
}

.map {
    height: 260px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dfeaf3, #b9d1e3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #466
}

@media(max-width:900px) {
    .menu {
        display: none
    }

    .hero-grid,
    .split,
    .login-wrap,
    .blog-layout {
        grid-template-columns: 1fr
    }

    .cards,
    .grid4,
    .register-grid {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

    .hero h1 {
        font-size: 42px
    }

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

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

    .full {
        grid-column: auto
    }
}