@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0e0f0c;
    --green: #9fe870;
    --dark-green: #163300;
    --mint: #e2f6d5;
    --pastel: #cdffad;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --warm-dark: #454745;
    --white: #ffffff;
    --ring: rgba(14,15,12,0.12);
}

html {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-feature-settings: "calt";
    color: var(--black);
    background: var(--white);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAV */
nav {
    border-bottom: 1px solid var(--ring);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--black);
    font-feature-settings: "calt";
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--dark-green);
    background: var(--green);
    border-radius: 6px;
    padding: 2px 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: background 0.2s;
    font-feature-settings: "calt";
}

.nav-links a:hover {
    background: rgba(211,242,192,0.4);
}

.nav-cta {
    background: var(--green);
    color: var(--dark-green) !important;
    padding: 8px 20px !important;
    border-radius: 9999px !important;
    transition: transform 0.18s !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    background: var(--green) !important;
}

.nav-cta:active {
    transform: scale(0.95) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.2s;
}

/* HERO */
.hero {
    padding: 80px 0 64px;
    background: var(--white);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--mint);
    border-radius: 9999px;
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--warm-dark);
    max-width: 460px;
    margin-bottom: 36px;
    font-feature-settings: "calt";
}

.hero-meta {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    margin-top: 16px;
    font-feature-settings: "calt";
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring) 0px 0px 0px 1px;
    aspect-ratio: 4/3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* SECTION HEADINGS */
.section-heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 12px;
}

.section-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
    font-feature-settings: "calt";
    margin-bottom: 48px;
}

/* ARTICLES GRID */
.articles-section {
    padding: 72px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    border: 1px solid var(--ring);
    border-radius: 30px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--white);
}

.article-card:hover {
    box-shadow: 0 8px 32px rgba(14,15,12,0.10);
    transform: translateY(-3px);
}

.article-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-card:hover .article-card-img img {
    transform: scale(1.04);
}

.article-card-body {
    padding: 24px;
}

.article-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--mint);
    border-radius: 9999px;
    padding: 3px 12px;
    display: inline-block;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.article-card-body h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--black);
    margin-bottom: 10px;
    font-feature-settings: "calt";
}

.article-card-body p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--warm-dark);
    font-weight: 400;
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.article-card-meta {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    font-feature-settings: "calt";
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--green);
    border-radius: 9999px;
    padding: 8px 20px;
    transition: transform 0.18s;
    font-feature-settings: "calt";
    margin-top: 16px;
}

.read-more:hover {
    transform: scale(1.05);
}

.read-more:active {
    transform: scale(0.95);
}

/* FEATURES STRIP */
.features-section {
    background: var(--black);
    padding: 72px 0;
}

.features-section .section-heading,
.features-section .section-sub {
    color: var(--white);
}

.features-section .section-sub {
    color: rgba(255,255,255,0.65);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 32px 28px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    font-feature-settings: "calt";
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    font-feature-settings: "calt";
}

/* CONTACT / FORM */
.contact-section {
    padding: 72px 0;
    background: var(--light-surface);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 28px;
    font-feature-settings: "calt";
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--black);
    font-weight: 600;
    font-feature-settings: "calt";
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.form-card {
    background: var(--white);
    border-radius: 30px;
    padding: 36px;
    box-shadow: var(--ring) 0px 0px 0px 1px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-feature-settings: "calt";
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--dark-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-submit {
    width: 100%;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--green);
    border: none;
    border-radius: 9999px;
    padding: 14px;
    cursor: pointer;
    transition: transform 0.18s;
    font-feature-settings: "calt";
}

.form-submit:hover {
    transform: scale(1.03);
}

.form-submit:active {
    transform: scale(0.97);
}

.form-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 12px;
    font-feature-settings: "calt";
}

/* ARTICLE PAGE */
.article-hero {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--ring);
}

.breadcrumb {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.breadcrumb a {
    color: var(--dark-green);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.article-meta {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    font-feature-settings: "calt";
    margin-bottom: 28px;
}

.article-meta span {
    margin-right: 16px;
}

.article-cover {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/7;
    margin-top: 32px;
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 48px 0 72px;
}

.article-content {
    max-width: 720px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1.1;
    color: var(--black);
    margin: 40px 0 16px;
    font-feature-settings: "calt";
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--black);
    margin: 28px 0 10px;
    font-feature-settings: "calt";
}

.article-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-content ul,
.article-content ol {
    margin: 16px 0 20px 24px;
}

.article-content li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.article-content a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-highlight {
    background: var(--mint);
    border-left: 4px solid var(--green);
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.article-highlight p {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-green);
}

/* PAGE (about/privacy/terms) */
.page-hero {
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--ring);
}

.page-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.page-body {
    padding: 48px 0 80px;
    max-width: 760px;
}

.page-body h2 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--black);
    margin: 36px 0 12px;
    font-feature-settings: "calt";
}

.page-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 18px;
    font-feature-settings: "calt";
}

.page-body ul {
    margin: 12px 0 18px 24px;
}

.page-body li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

/* FOOTER */
footer {
    margin-top: auto;
    background: var(--black);
    color: rgba(255,255,255,0.8);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    font-feature-settings: "calt";
    max-width: 300px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    transition: color 0.2s;
    font-feature-settings: "calt";
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-feature-settings: "calt";
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-feature-settings: "calt";
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    border-radius: 20px;
    padding: 20px 28px;
    max-width: 600px;
    width: calc(100% - 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

#cookie-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-feature-settings: "calt";
}

#cookie-banner p a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--green);
    color: var(--dark-green);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    padding: 9px 20px;
    cursor: pointer;
    transition: transform 0.18s;
    font-feature-settings: "calt";
    font-family: 'Inter', sans-serif;
}

.btn-accept:hover { transform: scale(1.05); }
.btn-accept:active { transform: scale(0.95); }

.btn-reject {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    padding: 9px 20px;
    cursor: pointer;
    transition: background 0.2s;
    font-feature-settings: "calt";
    font-family: 'Inter', sans-serif;
}

.btn-reject:hover { background: rgba(255,255,255,0.16); }

/* DISCLAIMER */
.disclaimer {
    background: var(--mint);
    border-top: 1px solid rgba(159,232,112,0.4);
    padding: 14px 0;
    font-size: 13px;
    color: var(--dark-green);
    font-weight: 600;
    font-feature-settings: "calt";
    text-align: center;
}

/* RELATED ARTICLES */
.related-section {
    padding: 56px 0;
    border-top: 1px solid var(--ring);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
        max-height: 300px;
    }
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--ring);
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-hamburger {
        display: flex;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h1 {
        font-size: 40px;
    }
}
