@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600&family=Rubik:wght@400;500;600&display=swap");

:root {
    --green: #08d665;
    --green-strong: #06a950;
    --green-soft: #22cd6f;
    --bg: #0b0d0e;
    --surface: #2e3d44;
    --surface-2: #323838;
    --border: #3e425c;
    --text: #ffffff;
    --muted: #c8c6c6;
    --quiet: #777777;
    --link: #98adc2;
    --warning: #ffc107;
    --danger: #ff0000;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 0%, rgba(8, 214, 101, 0.11), transparent 28rem),
        linear-gradient(180deg, #0b0d0e 0%, #111819 52%, #0b0d0e 100%);
    color: var(--text);
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--link);
    text-decoration-color: var(--green);
    text-underline-offset: 4px;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--green);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    color: var(--text);
    font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(44px, 7vw, 80px);
    line-height: 1.12;
}

h2 {
    font-size: clamp(32px, 4vw, 44px);
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

mark {
    background: rgba(8, 214, 101, 0.16);
    color: var(--text);
    padding: 0 6px;
}

hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(46, 61, 68, 0.88);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

th,
td {
    padding: 16px;
    border: 1px solid var(--border);
    color: var(--muted);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--text);
    font-weight: 600;
}

ul,
ol {
    margin: 0;
    padding-left: 24px;
    color: var(--muted);
}

blockquote {
    margin: 0;
    padding: 24px 28px;
    border-left: 4px solid var(--green);
    background: rgba(62, 66, 92, 0.65);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 70px;
    padding: 0 40px;
    border-bottom: 1px solid var(--border);
    background: rgba(11, 13, 14, 0.95);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.brand img {
    width: 48px;
    height: 48px;
    border: 1px solid var(--green);
    border-radius: 5px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.nav-links a {
    min-height: 48px;
    padding: 10px 12px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    line-height: 27px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.hero {
    padding: 96px 40px 80px;
    background: linear-gradient(135deg, rgba(11, 13, 14, 0.96), rgba(46, 61, 68, 0.7));
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 32px;
    align-items: center;
}

.eyebrow,
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 4px 12px;
    border: 1px solid var(--green-strong);
    border-radius: 4px;
    background: rgba(6, 169, 80, 0.1);
    color: var(--green);
    font-size: 12px;
    font-weight: 500;
}

.lead {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.hero-media,
.card,
.media-card {
    border: 1px solid var(--border);
    border-radius: 5px;
    background: rgba(46, 61, 68, 0.92);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-media {
    padding: 16px;
}

.hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 5px;
    object-fit: cover;
}

.section {
    padding: 80px 0;
}

.section.compact {
    padding-top: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    padding: 32px;
}

.card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(8, 214, 101, 0.15);
}

.card h3,
.card h4 {
    font-size: 24px;
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
    border-radius: 5px;
    object-fit: cover;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 25px;
    border: 0;
    border-radius: 0;
    background: var(--green);
    color: var(--text);
    font-size: 13px;
    line-height: 27px;
    text-decoration: none;
}

.button:hover,
.button:focus-visible {
    background: var(--green-strong);
    color: var(--text);
}

.button.secondary {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.socials a {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text);
    border-radius: 5px;
    background: var(--green);
}

.socials img {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    object-fit: cover;
}

.media-stack {
    display: grid;
    gap: 24px;
}

.media-card {
    padding: 24px;
}

.media-card audio,
.media-card video {
    width: 100%;
    border-radius: 5px;
}

.footer {
    padding: 32px 40px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    text-align: center;
}

.footer p {
    margin: 0;
    color: var(--quiet);
    font-size: 13px;
}

.centered {
    text-align: center;
}

@media (max-width: 768px) {
    .site-nav {
        position: static;
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .hero {
        padding: 52px 0 40px;
    }

    .hero-grid,
    .grid,
    .grid.two {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 52px 0;
    }

    .card {
        padding: 24px;
    }
}

.signature {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin: 15px auto 5px;
    filter: contrast(1.2);
}