:root {
    --green-deep: #022d1a;
    --green-main: #0b7a3a;
    --green-soft: #0e9c4a;
    --green-muted: #0f3f27;
    --text-main: #f9fff8;
    --text-muted: #c0e2d0;
    --card-bg: rgba(1, 28, 18, 0.9);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    --shadow-subtle: 0 8px 20px rgba(0, 0, 0, 0.25);
    --transition-fast: 180ms ease-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, #0b7a3a 0, rgba(0, 0, 0, 0) 55%),
        radial-gradient(circle at bottom right, #0e9c4a 0, rgba(0, 0, 0, 0) 55%),
        linear-gradient(135deg, #02120b, #022013);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(1, 18, 11, 0.95), rgba(1, 18, 11, 0.85));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    flex-shrink: 0;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-name {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.nav-links a {
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
    background-color: rgba(15, 161, 80, 0.16);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.3);
    padding: 0;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero-section {
    padding: 48px 0 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 12px;
}

.hero-lead {
    margin: 0 0 14px;
    max-width: 38rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.97rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 6px;
    font-size: 0.92rem;
    color: var(--text-main);
}

.hero-highlights li::before {
    content: "•";
    margin-right: 6px;
    color: var(--green-soft);
}

.hero-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-card {
    justify-self: stretch;
}

.hero-card-inner {
    background: radial-gradient(circle at top left, rgba(22, 174, 97, 0.7), transparent 55%),
                radial-gradient(circle at bottom right, rgba(2, 70, 41, 0.85), rgba(0, 0, 0, 0.95));
    border-radius: 24px;
    padding: 20px 20px 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(2, 29, 18, 0.75);
    color: var(--text-muted);
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.hero-card-inner h2 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.hero-card-inner p {
    margin: 0 0 16px;
    font-size: 0.92rem;
    color: var(--text-main);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--green-soft), #68ff9e);
    color: #052513;
    box-shadow: var(--shadow-subtle);
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4);
    filter: saturate(1.1);
}

/* Privacy Section */
.privacy-section {
    padding: 40px 0 32px;
    background: radial-gradient(circle at center, rgba(6, 89, 46, 0.9), rgba(1, 20, 11, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.privacy-section h2 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.6rem;
}

.section-intro {
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 48rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.policy-article {
    background: rgba(1, 18, 11, 0.9);
    border-radius: 16px;
    padding: 14px 16px 15px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    margin-bottom: 14px;
}

.policy-article h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.policy-article p {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

.policy-article ul {
    margin: 0 0 6px 1em;
    padding-left: 0.5em;
    font-size: 0.9rem;
    color: var(--text-main);
}

.policy-article li {
    margin-bottom: 4px;
    line-height: 1.6;
}

.last-updated {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nowrap {
    white-space: nowrap;
}

/* Contact */
.contact-section {
    padding: 40px 0 46px;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
}

.contact-copy h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-copy p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 32rem;
    line-height: 1.6;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.form-row .form-field {
    flex: 1 1 160px;
}

label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

input,
textarea {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    background: rgba(2, 26, 14, 0.96);
    color: var(--text-main);
    font: inherit;
    resize: vertical;
    min-height: 40px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

input:focus,
textarea:focus {
    border-color: rgba(90, 247, 150, 0.9);
    box-shadow: 0 0 0 1px rgba(90, 247, 150, 0.5);
    background: rgba(3, 35, 19, 1);
}

.btn-submit {
    align-self: flex-start;
    margin-top: 4px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(120deg, var(--green-soft), #7cffb1);
    color: #052513;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4);
    filter: saturate(1.05);
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0 18px;
    background: rgba(2, 18, 11, 0.98);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-inner a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: rgba(141, 255, 191, 0.7);
    text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        padding-inline: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        inset: 50px 12px auto;
        border-radius: 16px;
        padding: 10px 10px 8px;
        background: rgba(1, 18, 11, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.6);
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .hero-section {
        padding-top: 32px;
    }

    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 0.92rem;
    }

    .brand-tagline {
        display: none;
    }

    .hero-card-inner {
        padding: 18px 16px 18px;
    }

    .policy-article {
        padding: 12px 12px 13px;
    }

    .contact-form-card {
        padding-inline: 14px;
    }
}
