:root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-soft: #f6faf9;
    --ink: #333633;
    --ink-strong: #1f463b;
    --ink-muted: #4a4e4c;
    --accent: #2e5e4e;
    --accent-strong: #1f463b;
    --accent-soft: #a9cfc1;
    --accent-glow: rgba(46, 94, 78, 0.25);
    --glass: rgba(255, 255, 255, 0.88);
    --glass-strong: rgba(255, 255, 255, 0.96);
    --border: rgba(46, 94, 78, 0.18);
    --border-strong: rgba(46, 94, 78, 0.28);
    --shadow-soft: 0 18px 60px rgba(31, 70, 59, 0.12);
    --shadow-tight: 0 10px 30px rgba(31, 70, 59, 0.12);
    --shadow-elevated: 0 26px 60px rgba(31, 70, 59, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

body, html {
    padding: 0;
    height: 100%;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--ink-strong);
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.page-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px;
}

.section-header {
    max-width: 980px;
    margin: 0 auto 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.section-header::after {
    content: "";
    width: 80px;
    height: 2px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31, 70, 59, 0) 0%, rgba(31, 70, 59, 0.5) 50%, rgba(31, 70, 59, 0) 100%);
}

.section-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin: 0;
}

.section-title {
    font-size: clamp(30px, 3.4vw, 44px);
    color: var(--ink-strong);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #1f463b 0%, #2e5e4e 60%, #6ba48a 120%);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(31, 70, 59, 0.22);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 46px rgba(31, 70, 59, 0.24);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-ghost {
    border-color: rgba(46, 94, 78, 0.35);
    color: var(--accent-strong);
    background: #fafaf9;
    backdrop-filter: blur(10px);
}

.btn-secondary {
    border-color: rgba(46, 94, 78, 0.35);
    color: var(--accent-strong);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.surface-card {
    background: #ffffff;
    border: 1px solid rgba(15, 31, 29, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(15, 31, 29, 0.08);
}

.kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin: 0 0 12px;
}

.crisis-cta {
    font-size: 14px;
    color: var(--accent-strong);
    margin-top: 10px;
}
