/* assets/css/style.css */
:root {
    --bg: #070B14;
    --bg2: #0B1220;
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .08);
    --line: rgba(255, 255, 255, .12);
    --text: #EAF0FF;
    --muted: rgba(234, 240, 255, .74);
    --soft: rgba(234, 240, 255, .55);
    --brand: #54B435;
    --brand2: #379237;
    --danger: #ff5468;
    --warn: #ffc24d;
    --ok: #40d98b;
    --shadow: 0 20px 60px rgba(0, 0, 0, .45);
    --radius: 18px;
    --radius2: 26px;
    --container: 1180px;
    --pad: 24px;
    --fontA: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --fontB: Roboto, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--fontA);
    color: var(--text);
    background:
        radial-gradient(900px 520px at 12% 12%, rgba(84, 180, 53, .22), transparent 55%),
        radial-gradient(700px 480px at 86% 24%, rgba(55, 146, 55, .18), transparent 60%),
        radial-gradient(560px 380px at 60% 90%, rgba(140, 80, 255, .10), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(var(--container), calc(100% - 2*var(--pad)));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(150%) blur(14px);
    background: rgba(7, 11, 20, .62);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.brand-logo {
    width: 126px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .35));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-name {
    font-weight: 800;
    letter-spacing: .5px
}

.brand-sub {
    font-size: 12px;
    color: var(--soft);
    margin-top: 4px
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    padding: 10px 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(234, 240, 255, .85);
    margin: 5px 0;
    border-radius: 2px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(234, 240, 255, .80);
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
    color: rgba(234, 240, 255, .96);
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(84, 180, 53, .16);
    border-color: rgba(84, 180, 53, .30);
    color: rgba(234, 240, 255, .98);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: rgba(234, 240, 255, .95);
    cursor: pointer;
    box-shadow: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .20)
}

.btn:active {
    transform: translateY(0px)
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border-color: rgba(84, 180, 53, .45);
    color: #06110A;
}

.btn-primary:hover {
    filter: brightness(1.05)
}

.btn-ghost {
    background: rgba(255, 255, 255, .02);
}

.btn-sm {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px
}

.hero {
    padding: 64px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: rgba(234, 240, 255, .78);
    font-weight: 600;
    letter-spacing: .2px;
    margin: 0 0 14px;
}

.h1 {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -.8px;
}

.h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -.5px;
}

.h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.lead {
    font-family: var(--fontB);
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin: 16px 0 0;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pill {
    font-size: 13px;
    color: rgba(234, 240, 255, .82);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
}

.hero-visual {
    position: relative;
    min-height: 420px
}

.glass-card {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    box-shadow: var(--shadow);
}

.hero-card {
    overflow: hidden
}

.hero-card-top {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot-green {
    background: var(--ok)
}

.dot-yellow {
    background: var(--warn)
}

.dot-red {
    background: var(--danger)
}

.hero-card-body {
    padding: 16px 16px 18px
}

.stat {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.stat:last-of-type {
    border-bottom: none
}

.stat-k {
    color: rgba(234, 240, 255, .70);
    font-weight: 600
}

.stat-v {
    color: rgba(234, 240, 255, .92);
    font-weight: 700
}

.hero-image-wrap {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10)
}

.hero-image {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.glow {
    position: absolute;
    inset: auto;
    filter: blur(40px);
    opacity: .65;
    pointer-events: none;
}

.glow-a {
    width: 220px;
    height: 220px;
    left: -30px;
    bottom: 10px;
    background: rgba(84, 180, 53, .45)
}

.glow-b {
    width: 240px;
    height: 240px;
    right: -40px;
    top: 40px;
    background: rgba(140, 80, 255, .28)
}

.section {
    padding: 56px 0
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-head {
    margin-bottom: 18px
}

.muted {
    color: var(--muted);
    font-family: var(--fontB);
    line-height: 1.65
}

.fineprint {
    margin-top: 14px;
    color: rgba(234, 240, 255, .58);
    font-size: 13px;
    line-height: 1.6
}

.grid {
    display: grid;
    gap: 14px
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.card {
    padding: 18px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(84, 180, 53, .16);
    border: 1px solid rgba(84, 180, 53, .22);
    margin-bottom: 12px;
    font-weight: 900;
}

.text-link {
    display: inline-flex;
    margin-top: 12px;
    color: rgba(234, 240, 255, .92);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(234, 240, 255, .30);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center;
}

.split-copy {
    padding-right: 6px
}

.split-media {
    display: flex;
    justify-content: center
}

.media-frame {
    border-radius: var(--radius2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--shadow);
}

.media-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.checklist {
    display: grid;
    gap: 10px;
    margin: 16px 0 0
}

.check {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    color: rgba(234, 240, 255, .84);
    font-weight: 600;
}

.check::before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: rgba(84, 180, 53, .95);
    font-weight: 900;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px;
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow);
}

.download-left {
    min-width: 240px
}

.download-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 14px 0
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.logo-strip img {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    padding: 10px;
    height: 86px;
    object-fit: contain;
}

.page-hero {
    padding: 48px 0 10px
}

.page-hero-inner {
    padding: 14px 0 0
}

.callout {
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(84, 180, 53, .22);
    background: rgba(84, 180, 53, .10);
    color: rgba(234, 240, 255, .86);
}

.faq {
    display: grid;
    gap: 12px
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    padding: 10px 12px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    padding: 8px 6px;
    color: rgba(234, 240, 255, .92);
}

.faq-body {
    padding: 8px 6px 10px
}

.cta-panel {
    margin-top: 18px;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cta-title {
    font-weight: 900
}

.contact-grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: start
}

.stack {
    display: grid;
    gap: 14px
}

.form {
    display: grid;
    gap: 12px
}

.field {
    display: grid;
    gap: 8px
}

label {
    font-weight: 800;
    color: rgba(234, 240, 255, .88)
}

.input {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    color: rgba(234, 240, 255, .95);
    padding: 12px 12px;
    outline: none;
    font-family: var(--fontB);
}

.input:focus {
    border-color: rgba(84, 180, 53, .45);
    box-shadow: 0 0 0 5px rgba(84, 180, 53, .12)
}

.textarea {
    resize: vertical;
    min-height: 140px
}

.form-msg {
    min-height: 22px;
    color: rgba(234, 240, 255, .75);
    font-size: 14px
}

.link-list {
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.legal {
    display: grid;
    gap: 14px
}

.legal-card {
    padding: 18px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
}

.legal-list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(234, 240, 255, .74);
    line-height: 1.7;
    font-family: var(--fontB)
}

.site-footer {
    padding: 26px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .18);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.footer-brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.footer-title {
    font-weight: 900
}

.footer-sub {
    color: rgba(234, 240, 255, .65);
    font-size: 13px;
    margin-top: 4px
}

.footer-meta {
    color: rgba(234, 240, 255, .70);
    font-family: var(--fontB);
    line-height: 1.6;
    margin-top: 10px
}

.footer-h {
    font-weight: 900;
    margin-bottom: 10px
}

.footer-link {
    display: block;
    padding: 8px 0;
    color: rgba(234, 240, 255, .76)
}

.footer-link:hover {
    color: rgba(234, 240, 255, .95);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(234, 240, 255, .25)
}

.footer-btn {
    width: 100%
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.mini-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 12px
}

.mini-msg {
    grid-column: 1 / -1;
    min-height: 20px;
    color: rgba(234, 240, 255, .72);
    font-size: 13px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.center-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.center-card {
    width: min(720px, 100%);
    padding: 24px 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: var(--shadow);
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(84, 180, 53, .30);
    background: rgba(84, 180, 53, .14);
    color: rgba(234, 240, 255, .92);
    font-weight: 900;
    margin-bottom: 12px;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        min-height: auto
    }

    .media-frame img {
        height: 340px
    }

    .cards-3 {
        grid-template-columns: 1fr
    }

    .cards-2 {
        grid-template-columns: 1fr
    }

    .split {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .download-card {
        flex-direction: column;
        align-items: flex-start
    }

    .logo-strip {
        grid-template-columns: 1fr 1fr
    }

    .h1 {
        font-size: 42px
    }
}

@media (max-width: 720px) {
    .brand {
        min-width: unset
    }

    .brand-text {
        display: none
    }

    .nav-toggle {
        display: inline-flex
    }

    .nav-panel {
        position: fixed;
        right: 14px;
        top: 72px;
        width: min(360px, calc(100% - 28px));
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(7, 11, 20, .92);
        box-shadow: var(--shadow);
    }

    .nav-panel.open {
        display: flex
    }

    .nav-link {
        width: 100%
    }

    .btn-sm {
        width: 100%
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        justify-content: flex-start
    }

    .h1 {
        font-size: 36px
    }
}