:root {
    --bg: #15191e;
    --surface: #1c2129;
    --border: #4a5142;
    --text: #c5c8ba;
    --text-muted: #8b9083;
    --accent: #69e228;
    --accent-dim: #1f480a;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    line-height: 1.5;
}

a {
    color: var(--accent);
}

h4 {
    color: var(--text-muted);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    margin: 0.5rem 0 0;
}

.logo {
    height: 240px;
    width: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.25rem;
    margin: 0 0 1rem;
}

.lede {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 0.02rem;
    max-width: 520px;
    margin: 0 auto 0.5rem;
}

.lede strong {
    color: var(--text);
}

.cta-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary[aria-disabled="true"] {
    opacity: 0.5;
    pointer-events: none;
}

.btn-ghost {
    border-color: var(--border);
    color: var(--text);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    line-height: 0;
}

.btn-icon:hover {
    color: var(--accent);
}

.products {
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
}

.product-card h2 {
    margin: 0 0 0.5rem;
    color: var(--accent);
}

.product-card p {
    margin: 0;
    color: var(--text-muted);
}

.site-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 2rem 1.5rem 3rem;
}
