/* Main website CSS. Edit this from OCpanel > File Manager. */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 70% 10%, rgba(96,218,37,.12), transparent 34%), #050805;
    color: #f3f8ef;
}
a { color: #60da25; }
.site-shell {
    min-height: 100vh;
    padding: clamp(24px, 5vw, 72px);
}
.site-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: clamp(28px, 5vw, 56px);
}
.site-brand {
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.site-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.site-nav a {
    color: #dfffd9;
    text-decoration: none;
    border-bottom: 1px solid rgba(96,218,37,.35);
}
.site-content {
    max-width: 1040px;
}
.hero-block {
    border-left: 4px solid #60da25;
    padding: clamp(20px, 4vw, 42px);
    background: rgba(96,218,37,.06);
}
.eyebrow {
    color: #60da25;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
}
h1 {
    font-size: clamp(42px, 8vw, 96px);
    line-height: .9;
    letter-spacing: -.06em;
    margin: 0 0 20px;
}
p { color: #cbd7c5; line-height: 1.7; }
.site-button {
    display: inline-flex;
    margin-top: 16px;
    padding: 12px 16px;
    background: #60da25;
    color: #071004;
    text-decoration: none;
    font-weight: 900;
}
@media (max-width: 720px) {
    .site-header { align-items: flex-start; flex-direction: column; }
    .site-nav { gap: 10px; }
}
