:root {
    --lg-background: #fff8ef;
    --lg-surface: #fffdf8;
    --lg-text: #141312;
    --lg-muted: #6c6a65;
    --lg-green-900: #07130b;
    --lg-green-800: #102416;
    --lg-green-700: #24442e;
    --lg-green-600: #315e41;
    --lg-green-200: #cfe8d5;
    --lg-border: rgba(20, 19, 18, 0.12);
    --lg-radius: 18px;
}

* {
    box-sizing: border-box;
}

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

body {
    background: var(--lg-background);
    color: var(--lg-text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.app-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    background: var(--lg-green-900);
    color: white;
    padding: 28px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 42px;
    font-size: 18px;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--lg-green-200);
    color: var(--lg-green-900);
    font-size: 13px;
    font-weight: 800;
}

nav {
    display: grid;
    gap: 8px;
}

.nav-item {
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.nav-item.active {
    background: var(--lg-green-700);
    color: white;
}

.main-content {
    padding: 72px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--lg-green-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 84px);
    letter-spacing: -0.06em;
}

.intro {
    max-width: 680px;
    margin: 24px 0 42px;
    color: var(--lg-muted);
    font-size: 20px;
    line-height: 1.6;
}

.status-card {
    display: flex;
    max-width: 720px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border: 1px solid var(--lg-border);
    border-radius: var(--lg-radius);
    background: var(--lg-surface);
    box-shadow: 0 18px 60px rgba(20, 19, 18, 0.07);
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--lg-green-600);
}

.status-card a {
    color: var(--lg-green-700);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 760px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        padding: 42px 24px;
    }

    .status-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}
