@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

:root {
    --color-near-black: #0e0f0c;
    --color-wise-green: #9fe870;
    --color-dark-green: #163300;
    --color-light-mint: #e2f6d5;
    --color-pastel-green: #cdffad;
    --color-warm-dark: #454745;
    --color-gray: #868685;
    --color-light-surface: #e8ebe6;
    --color-bg: #ffffff;
    --color-bg-off: #f9faf8;
    --radius-pill: 9999px;
    --radius-card-sm: 16px;
    --radius-card-md: 30px;
    --radius-card-lg: 40px;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--color-near-black);
    background: var(--color-bg);
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-dark-green);
    text-decoration: none;
    border-radius: 2px;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.75;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(14,15,12,0.10);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-weight: 900;
    font-size: 22px;
    line-height: 0.85;
    letter-spacing: -0.5px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    text-decoration: none;
}

.site-logo span {
    color: var(--color-wise-green);
}

/* NAV */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-near-black);
    padding: 8px 14px;
    border-radius: 20px;
    transition: background 0.2s;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
}

.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    opacity: 1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-near-black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* HERO */
.hero {
    background: var(--color-bg-off);
    padding: 80px 0 72px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--color-light-mint);
    color: var(--color-dark-green);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    font-feature-settings: "calt";
    letter-spacing: -0.084px;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.85;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-warm-dark);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-img {
    border-radius: var(--radius-card-lg);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-wise-green);
    color: var(--color-dark-green);
    font-weight: 600;
    font-size: 18px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    opacity: 1;
    color: var(--color-dark-green);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(22,51,0,0.08);
    color: var(--color-near-black);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    transform: scale(1.05);
    opacity: 1;
}

.btn-secondary:active {
    transform: scale(0.95);
}

/* SECTIONS */
.section {
    padding: 72px 0;
}

.section-alt {
    padding: 72px 0;
    background: var(--color-bg-off);
}

.section-heading {
    font-weight: 900;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 0.85;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.section-subheading {
    font-weight: 900;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 0.85;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: var(--color-bg);
    border-radius: var(--radius-card-md);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.01);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card-tag {
    display: inline-block;
    background: var(--color-light-mint);
    color: var(--color-dark-green);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    font-feature-settings: "calt";
    letter-spacing: -0.084px;
}

.card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.23;
    letter-spacing: -0.39px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 10px;
}

.card-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-warm-dark);
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-feature-settings: "calt";
}

.card-link::after {
    content: '→';
}

/* FEATURED ARTICLE */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--color-bg);
    border-radius: var(--radius-card-lg);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
}

.featured-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.featured-article-body {
    padding: 40px 40px 40px 0;
}

/* COMPARISON TABLE */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-card-lg);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
}

.comparison-table th {
    background: var(--color-near-black);
    color: var(--color-bg);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 20px;
    text-align: left;
    font-feature-settings: "calt";
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(14,15,12,0.08);
    font-feature-settings: "calt";
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: var(--color-bg-off);
}

.check {
    color: var(--color-dark-green);
    font-weight: 700;
}

.cross {
    color: #d03238;
    font-weight: 700;
}

/* CONTACT FORM */
.contact-form {
    background: var(--color-bg);
    border-radius: var(--radius-card-lg);
    box-shadow: var(--shadow-ring);
    padding: 48px;
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-near-black);
    margin-bottom: 8px;
    font-feature-settings: "calt";
    letter-spacing: -0.084px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--color-near-black);
    background: var(--color-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-feature-settings: "calt";
}

.form-input:focus {
    outline: none;
    border-color: var(--color-wise-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-success {
    display: none;
    background: var(--color-light-mint);
    color: var(--color-dark-green);
    border-radius: 10px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    font-feature-settings: "calt";
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-near-black);
    color: var(--color-bg);
    padding: 20px 28px;
    border-radius: var(--radius-card-md);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    max-width: 700px;
    width: calc(100% - 48px);
    box-shadow: 0 8px 32px rgba(14,15,12,0.25);
}

#cookie-banner p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
    font-feature-settings: "calt";
}

#cookie-banner a {
    color: var(--color-wise-green);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--color-wise-green);
    color: var(--color-dark-green);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-feature-settings: "calt";
    transition: transform 0.2s;
}

.cookie-accept:hover { transform: scale(1.05); }
.cookie-accept:active { transform: scale(0.95); }

.cookie-reject {
    background: rgba(255,255,255,0.10);
    color: var(--color-bg);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-feature-settings: "calt";
    transition: transform 0.2s;
}

.cookie-reject:hover { transform: scale(1.05); }
.cookie-reject:active { transform: scale(0.95); }

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 32px;
    font-feature-settings: "calt";
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-warm-dark);
    font-weight: 600;
}

.breadcrumb span {
    color: var(--color-gray);
}

/* ARTICLE PAGE */
.article-header {
    padding: 60px 0 40px;
    background: var(--color-bg-off);
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.article-meta-item {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 600;
    font-feature-settings: "calt";
}

.article-img {
    width: 100%;
    border-radius: var(--radius-card-lg);
    aspect-ratio: 16/7;
    object-fit: cover;
    margin: 40px 0;
    box-shadow: var(--shadow-ring);
}

.article-content {
    padding-bottom: 80px;
}

.article-content h2 {
    font-weight: 900;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 0.85;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin: 48px 0 20px;
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin: 32px 0 14px;
}

.article-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-warm-dark);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-content ul, .article-content ol {
    margin: 0 0 20px 24px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-warm-dark);
    font-feature-settings: "calt";
}

.article-content li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--color-dark-green);
    font-weight: 600;
    border-bottom: 1px solid rgba(22,51,0,0.3);
}

.article-content blockquote {
    border-left: 4px solid var(--color-wise-green);
    padding: 16px 24px;
    background: var(--color-light-mint);
    border-radius: 0 16px 16px 0;
    margin: 32px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-green);
    font-feature-settings: "calt";
}

/* INFO BOX */
.info-box {
    background: var(--color-light-mint);
    border-radius: var(--radius-card-sm);
    padding: 20px 24px;
    margin: 24px 0;
    border-left: 4px solid var(--color-wise-green);
}

.info-box-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-dark-green);
    margin-bottom: 6px;
    font-feature-settings: "calt";
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box p {
    font-size: 15px !important;
    margin-bottom: 0 !important;
    color: var(--color-dark-green) !important;
}

/* STAT BLOCKS */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.stat-block {
    background: var(--color-bg);
    border-radius: var(--radius-card-md);
    box-shadow: var(--shadow-ring);
    padding: 32px 24px;
    text-align: center;
}

.stat-number {
    font-weight: 900;
    font-size: 48px;
    line-height: 0.85;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray);
    font-feature-settings: "calt";
}

/* FOOTER */
.site-footer {
    background: var(--color-near-black);
    color: rgba(255,255,255,0.8);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-weight: 900;
    font-size: 22px;
    line-height: 0.85;
    color: var(--color-bg);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.footer-brand span {
    color: var(--color-wise-green);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    font-feature-settings: "calt";
}

.footer-col-title {
    font-weight: 700;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-feature-settings: "calt";
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-wise-green);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-feature-settings: "calt";
}

.footer-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-feature-settings: "calt";
}

.footer-contact a {
    color: var(--color-wise-green);
    font-weight: 600;
}

/* DISCLAIMER */
.disclaimer-bar {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    margin-top: 0;
}

.disclaimer-bar p {
    font-size: 12px;
    color: rgba(255,255,255,0.30);
    text-align: center;
    line-height: 1.5;
    font-feature-settings: "calt";
}

/* PAGE HERO (inner pages) */
.page-hero {
    background: var(--color-bg-off);
    padding: 60px 0 48px;
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.page-hero h1 {
    font-weight: 900;
    font-size: clamp(36px, 4.5vw, 72px);
    line-height: 0.85;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-warm-dark);
    max-width: 620px;
    line-height: 1.6;
}

/* PROSE (about/privacy/terms) */
.prose {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

.prose h2 {
    font-weight: 900;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 0.9;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin: 48px 0 16px;
}

.prose h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin: 28px 0 12px;
}

.prose p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-warm-dark);
    margin-bottom: 18px;
    font-feature-settings: "calt";
}

.prose ul, .prose ol {
    margin: 0 0 18px 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-warm-dark);
    font-feature-settings: "calt";
}

.prose li {
    margin-bottom: 6px;
}

.prose a {
    color: var(--color-dark-green);
    font-weight: 600;
    border-bottom: 1px solid rgba(22,51,0,0.3);
}

/* TAGS strip */
.topics-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.topic-pill {
    background: var(--color-light-mint);
    color: var(--color-dark-green);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-feature-settings: "calt";
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 { font-size: 56px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-article { grid-template-columns: 1fr; }
    .featured-article img { min-height: 260px; }
    .featured-article-body { padding: 32px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .container, .container-narrow { padding: 0 16px; }
    .hero { padding: 48px 0; }
    .hero h1 { font-size: 40px; }
    .card-grid { grid-template-columns: 1fr; }
    .card-grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--color-bg); padding: 16px 24px; border-bottom: 1px solid rgba(14,15,12,0.10); gap: 2px; }
    .site-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .comparison-table { font-size: 13px; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}
