:root {
    --bg: #0b0f0d;
    --panel: #121815;
    --panel-2: #0f1512;
    --muted: #a9b7af;
    --text: #e7efe9;
    --accent: #7ad69b;
    --accent-2: #77b7ff;
    --warn: #ffc977;
    --border: #1f2a24;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);

    text-rendering: geometricPrecision;
    font-synthesis: style;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    background:
        radial-gradient(1200px 700px at 80% -10%, #133824 0%, transparent 60%),
        radial-gradient(900px 600px at 0% 10%, #12293a 0%, transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11, 15, 13, .75);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 14px 0;
    position: relative;
}
.nav-toggle {
    display: none;
    box-shadow: none;
}

.desktop-cta {
    display: inline-flex;
}

.nav-logo {
    height: 54px;
    /* try 48px - 64px */
    width: auto;
    display: block;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: conic-gradient(from 180deg, var(--accent), #2fbf71, #0d7d45, var(--accent));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.navlinks {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}

.navlinks a {
    padding: 6px 10px;
    border-radius: 999px;
}

.navlinks a:hover {
    background: #0f1512;
    color: var(--text);
}

.navlinks a.active {
    background: #0e1f16;
    color: #dff7e9;
    border: 1px solid #1c3c2c;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--border);
    background: #0f1512;
    color: var(--text);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(180deg, #1e3a2a, #132117);
    border-color: #214634;
    color: #dff7e9;
}

.btn.ghost {
    background: transparent;
    box-shadow: none
}

.btn:hover {
    filter: brightness(1.05)
}

main {
    padding: 22px 0 10px;
}

.hero {
    padding: 42px 0 18px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(122, 214, 155, .12);
    color: #c9f9dc;
    border: 1px solid #22593b;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

h1 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 10px 0 8px;
    line-height: 1.12;
}

h2.section-title {
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 8px;
}

.section-sub {
    color: var(--muted);
    margin: 0 0 18px;
    font-size: clamp(14px, 1.7vw, 17px);
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

.panel {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #cfe9da;
    background: #0e1f16;
    border: 1px solid #1c3c2c;
    padding: 4px 8px;
    border-radius: 999px;
    margin-bottom: 8px;
}

ul {
    margin: 8px 0 0 18px;
    color: var(--muted);
}

li {
    margin: 6px 0
}

.kpi {
    background: #0f1512;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
}

.kpi .k {
    font-size: 20px;
    font-weight: 900;
}

.kpi .l {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.step {
    padding: 14px;
    background: #0f1512;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.step .n {
    font-weight: 900;
    color: #dff7e9;
}

.step .t {
    font-size: 14px;
    margin-top: 6px;
}

.step .d {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.contact {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
}

.contact form {
    display: grid;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0f1512;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

footer {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    margin-top: 40px;
}

/* Desktop default */
.nav-toggle {
    display: none !important;
}

/* Keep desktop nav visible */
.navlinks {
    display: flex;
}

/* Mobile behavior */
@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex !important;
    }

    .navlinks {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        flex-direction: column;
        gap: 6px;
        width: min(260px, 92vw);
        padding: 10px;
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: var(--shadow);
    }

    .navlinks.open {
        display: flex;
    }
}