
html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

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

body {
    margin: 0; font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, rgba(184, 0, 0, 0.18), transparent 28%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(180deg, #050505 0%, #0c0c0c 28%, #101213 100%);
    color: #e6e6e6;
    line-height: 1.5;
    overflow-x: hidden;
}
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: 0.4px; line-height: 1.08; }
h2 {
    font-size: clamp(2rem, 3vw, 2.9rem);
    margin-bottom: 0.35rem;
}
h3 { line-height: 1.2; }
a { word-break: break-word; }
p { color: #d4d7da; }

/* NAV */
.navbar {
    width: 100%;
    background: rgba(6, 6, 6, 0.78);
    padding: 15px 0;
    position: fixed; z-index: 1000;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.nav-container {
    max-width: 1200px; margin: auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 20px;
    gap: 16px;
}
.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 1.8px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.45);
}
.logo-link { text-decoration: none; }
.logo small { font-size: 0.56em; font-weight: 500; display: block; color: #d9d9d9; margin-top: 4px; letter-spacing: 0.6px; }
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle:focus-visible,
.nav-links a:focus-visible,
.btn:focus-visible,
.cta:focus-visible {
    outline: 2px solid rgba(200,0,0,0.85);
    outline-offset: 3px;
}
.nav-links { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; align-items: center; }
.nav-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 90vh;
    background-image: url('assets/hero.png');
    /* shift image down slightly so the focal point isn't cut off */
    background-position: center -10%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; display: flex;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.42) 30%, rgba(0,0,0,0.72) 100%),
        radial-gradient(circle at center, rgba(184,0,0,0.12), transparent 48%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: auto auto 8% 50%;
    width: min(80vw, 780px);
    height: 240px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(184, 0, 0, 0.22), transparent 72%);
    filter: blur(14px);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 10;
    color: #f2f2f2;
    max-width: 860px;
    width: 100%;
    padding: 40px 44px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(13,13,13,0.60) 0%, rgba(13,13,13,0.42) 100%);
    box-shadow: 0 30px 70px rgba(0,0,0,0.42);
    backdrop-filter: blur(6px);
}
.hero h1 {
    font-size: clamp(3.8rem, 8vw, 5.5rem);
    text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.hero-content h3 small { font-size: 0.75em; font-weight: 400; display: block; color: #f2f2f2; margin-bottom: 8px; font-style: italic; }
.hero h2 {
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    margin-top: 18px;
    color: #f3f4f6;
    line-height: 1.3;
}
.hero p { margin-top: 15px; font-size: 16px; }
.hero-tagline {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(163,0,0,0.28), rgba(255,255,255,0.07));
    display: inline-block;
    padding: 12px 16px;
    border-radius: 999px;
    margin-top: 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.30);
    border: 1px solid rgba(255,255,255,0.08);
}
.cta {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #d11818 0%, #850000 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(121, 0, 0, 0.32);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 22px 40px rgba(121, 0, 0, 0.4); filter: brightness(1.04); }
.thin-red-line {
    position: absolute; bottom: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, rgba(120,0,0,0.55) 0%, #d51818 50%, rgba(120,0,0,0.55) 100%);
}

/* SECTIONS */
.section {
    max-width: 1200px; margin: auto; padding: 88px 20px;
    position: relative;
}
.section-sub { margin-top: 10px; line-height: 1.5; }

.card-row {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px; margin-top: 40px;
}
.card {
    background: linear-gradient(180deg, rgba(22,22,22,0.96) 0%, rgba(15,15,15,0.96) 100%);
    padding: 28px;
    border-radius: 22px; width: auto;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.card { text-align: center; }
.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(209, 24, 24, 0.95), transparent);
}
.card-icon { display: block; width: 64px; height: 64px; margin: 0 auto 12px; }
.red-title {
    color: #ef4d4d;
    text-shadow: 0 6px 16px rgba(120,0,0,0.28);
}
.white-title { color: #f7f7f7; }

.arrow-list { list-style: none; padding: 0; }
.arrow-list li::before { content: "→ "; color: white; }

.text-link {
    display: inline-block; margin-top: 15px;
    color: #f1c1c1; text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.text-link:hover { color: white; }

.split {
    display: flex; justify-content: space-between; gap: 60px; align-items: flex-start;
}
.split > * { flex: 1; min-width: 0; }

.quote { font-style: italic; margin-top: 20px; }
.quote-author { color: #c7c7c7; margin-bottom: 20px; }

/* Build features */
.build-features,
.approach,
.about-grid,
.charity-grid {
    background: linear-gradient(180deg, rgba(20,20,20,0.92) 0%, rgba(12,12,12,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    box-shadow: 0 24px 52px rgba(0,0,0,0.26);
}
.build-features,
.approach {
    padding: 34px;
}
.about-grid,
.charity-grid {
    padding: 34px;
}
.build-features .muted, .approach .muted { color: #cfcfcf; margin-top: 8px; margin-bottom: 18px; }
.features { display: flex; flex-direction: column; gap: 12px; }
.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.feature-icon {
    width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(209,24,24,0.42), rgba(209,24,24,0.08));
    color: #fff; flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(121, 0, 0, 0.24);
}
.feature-body { min-width: 0; }
.feature-body h3 { margin: 0; font-size: 16px; }
.feature-body .small { margin: 6px 0 0; color: #cfcfcf; font-size: 13px; }

/* Experience section improvements */
.eyebrow {
    color: #ffd7d7;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(163,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}
.lead { color: #eaeaea; font-size: 18px; line-height: 1.6; max-width: 760px; margin-bottom: 12px; }
.exp-benefits { list-style: none; padding: 0; margin: 12px 0 8px; display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); gap: 10px; }
.exp-benefits li {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    padding: 14px 14px 14px 18px;
    border-radius: 16px;
    color: #dcdcdc;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.exp-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ef4d4d, rgba(239, 77, 77, 0.12));
}
.exp-ctas { margin-top: 12px; display: flex; gap: 12px; align-items: center; }
.exp-ctas .text-link { color: #dcdcdc; text-decoration: none; }

/* Card polish */
.card { transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.52); border-color: rgba(239,77,77,0.18); }
.card h3 { font-size: 20px; margin-top: 8px; margin-bottom: 10px; }
.card p { color: #cfcfcf; font-size: 14px; line-height: 1.7; }
.card-icon { width: 72px; height: 72px; margin-bottom: 14px; }

/* Card list inside feature cards */
.card-list { list-style: none; padding: 0; margin: 10px 0 0; text-align: left; color: #dcdcdc; font-size: 14px; }
.card-list li { margin: 6px 0; padding-left: 18px; position: relative; }
.card-list li::before { content: "\2022"; color: #c80000; position: absolute; left: 0; top: 0; font-weight: 700; }

@media (max-width: 900px) {
    .exp-benefits { grid-template-columns: 1fr; }
    .exp-ctas { flex-direction: column; align-items: stretch; }
    .exp-ctas .btn { width: 100%; }
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-outline {
    background: rgba(255,255,255,0.02);
    color: #fff;
    border: 1px solid rgba(239,77,77,0.55);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-outline:hover {
    background: rgba(163,0,0,0.18);
    box-shadow: 0 16px 30px rgba(100, 0, 0, 0.2);
}

/* Testimonials */
.approach .testimonial { background: rgba(255,255,255,0.02); border-left: 4px solid rgba(200,0,0,0.9); padding: 14px 16px; margin-top: 14px; border-radius: 6px; }
.approach .testimonial p { margin: 0 0 8px 0; font-style: normal; color: #f5f5f5; }
.approach .testimonial footer { color: #bfbfbf; font-size: 13px; }

/* Approach steps */
.approach-steps { display: flex; gap: 12px; margin-top: 12px; }
.approach-steps .step {
    flex: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.approach-steps .step h4 { margin: 0 0 8px 0; font-size: 15px; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; }
.approach-steps .step p.small { margin: 0; color: #dcdcdc; font-size: 13px; }
.approach-ctas { margin-top: 12px; display: flex; gap: 12px; align-items: center; }

@media (max-width: 900px) {
    .approach-steps { flex-direction: column; }
    .approach-ctas { flex-direction: column; align-items: stretch; }
    .approach-ctas .btn { width: 100%; }
}

@media (max-width: 900px) {
    .split { flex-direction: column; }
    .card { width: 100%; }
}

/* About section */
.about-grid { display: flex; gap: 28px; align-items: center; }
.about-media { flex: 0 0 200px; }
.about-illustration { width: 100%; max-width: 200px; border-radius: 18px; display: block; box-shadow: 0 18px 36px rgba(0,0,0,0.42); border: 1px solid rgba(255,255,255,0.08); }
.about-content { flex: 1; }
.about-content h2 { margin-top: 0; }
.about-content .lead { color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.about-list { list-style: none; padding: 0; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.about-list li { position: relative; padding-left: 22px; color: #dcdcdc; }
.about-list li::before { content: "\2022"; color: #c80000; position: absolute; left: 0; top: 0; font-weight: 700; }
.about-actions { margin-top: 12px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, #d11818 0%, #840000 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 14px;
    box-shadow: 0 16px 28px rgba(120, 0, 0, 0.25);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 18px 32px rgba(120, 0, 0, 0.32); }

@media (max-width: 900px) {
    .about-grid { flex-direction: column; }
    .about-media { flex: none; }
    .about-illustration { max-width: 160px; }
}

/* Partners grid */
.partners-section .muted { margin-bottom: 14px; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; align-items: stretch; }
.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.05);
    color: #eaeaea;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.partner img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.partner-name { font-size: 13px; color: #dcdcdc; text-align: center; }
.partner:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,0.36); border-color: rgba(239,77,77,0.12); }
.partner-more .more-box { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 18px; background: rgba(163,0,0,0.12); border-radius: 8px; padding: 8px; }

.partner-title { font-size: 16px; color: #fff; margin: 8px 0 8px; text-align: center; font-weight: 800; letter-spacing: 0.3px; }

@media (max-width: 1100px) {
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .partners-grid { grid-template-columns: 1fr; }
}

/* Charities / Foundations section */
.charity-grid { display: flex; gap: 24px; align-items: center; }
.charity-media { flex: 0 0 160px; }
.charity-illustration { width: 100%; max-width: 160px; display: block; border-radius: 18px; box-shadow: 0 18px 32px rgba(0,0,0,0.42); border: 1px solid rgba(255,255,255,0.08); }
.charity-content { flex: 1; }
.charity-content .lead { font-size: 17px; margin-bottom: 10px; }
.charity-section .about-list { margin-top: 10px; }

@media (max-width: 900px) {
    .charity-grid { flex-direction: column; }
    .charity-media { flex: none; }
    .charity-illustration { max-width: 220px; }

    .insight-card,
    .article-hero-shell,
    .article-layout,
    .article-band,
    .option-columns,
    .blend-grid {
        grid-template-columns: 1fr;
    }

    .article-layout {
        gap: 20px;
    }

    .article-sidebar {
        position: static;
    }

    .stack-grid,
    .map-option-grid {
        grid-template-columns: 1fr;
    }
}

/* Insights / Article */
.insight-card,
.article-sidebar-card,
.recommendation-card,
.article-cta,
.stack-item,
.map-option-card,
.blend-piece {
    background: linear-gradient(180deg, rgba(20,20,20,0.94) 0%, rgba(12,12,12,0.94) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 24px 52px rgba(0,0,0,0.26);
}

.insight-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    align-items: center;
}

.insight-media img,
.article-hero-art img,
.article-band-media img {
    width: 100%;
    display: block;
}

.article-hero {
    position: relative;
    padding: 138px 20px 72px;
    overflow: hidden;
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(184, 0, 0, 0.2), transparent 30%),
        radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.06), transparent 20%);
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.48) 100%);
}

.article-hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 34px;
    align-items: center;
    padding: 42px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(14,14,14,0.82) 0%, rgba(10,10,10,0.72) 100%);
    box-shadow: 0 30px 70px rgba(0,0,0,0.42);
    backdrop-filter: blur(6px);
}

.article-hero-copy h1 {
    font-size: clamp(2.9rem, 5vw, 4.8rem);
    color: #fff;
    max-width: 11ch;
}

.article-lead {
    font-size: 18px;
    color: #e5e7eb;
    max-width: 760px;
    margin: 18px 0 0;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.article-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ededed;
    font-size: 13px;
    letter-spacing: 0.4px;
}

.article-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-sidebar-card {
    border-radius: 22px;
    padding: 22px;
}

.sidebar-label,
.section-kicker,
.option-label {
    color: #ffd7d7;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.article-sidebar-card a {
    display: block;
    color: #f1f1f1;
    text-decoration: none;
    margin-top: 12px;
    line-height: 1.5;
}

.article-sidebar-card a:hover {
    color: #fff;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.article-section,
.article-band,
.article-cta {
    border-radius: 28px;
}

.article-section {
    padding: 34px;
    background: linear-gradient(180deg, rgba(18,18,18,0.76) 0%, rgba(10,10,10,0.62) 100%);
    border: 1px solid rgba(255,255,255,0.05);
}

.article-section h2 {
    max-width: 14ch;
}

.article-section > p:not(.section-kicker),
.article-band-copy p,
.article-cta p {
    font-size: 16px;
    line-height: 1.75;
}

.stack-grid,
.map-option-grid,
.blend-grid {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

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

.stack-item {
    border-radius: 22px;
    padding: 22px;
}

.stack-item h3,
.blend-piece h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.article-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: 26px;
    padding: 34px;
    align-items: center;
    background: linear-gradient(135deg, rgba(104,0,0,0.15), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.05);
}

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

.map-option-card {
    border-radius: 24px;
    padding: 24px;
}

.map-option-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.map-option-header h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 6px;
}

.map-option-header p {
    margin: 0;
    color: #d4d7da;
}

.option-index {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d11818 0%, #840000 100%);
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 16px 28px rgba(120, 0, 0, 0.25);
}

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

.article-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.article-list li {
    position: relative;
    padding-left: 18px;
    margin: 10px 0;
    color: #ececec;
    line-height: 1.65;
}

.article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4d4d;
}

.article-list-muted li {
    color: #cfd3d7;
}

.recommendation-card {
    margin-top: 24px;
    border-radius: 24px;
    padding: 28px;
}

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

.blend-piece {
    border-radius: 20px;
    padding: 22px;
}

.article-quote {
    margin: 24px 0 0;
    padding: 24px 26px;
    border-left: 4px solid rgba(239,77,77,0.95);
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
}

.article-quote p {
    font-size: 20px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.article-cta {
    padding: 34px;
    text-align: left;
}

@media (max-width: 900px) {
    .insight-card,
    .article-hero-shell,
    .article-layout,
    .article-band,
    .option-columns,
    .blend-grid {
        grid-template-columns: 1fr;
    }

    .article-layout {
        gap: 20px;
    }

    .article-sidebar {
        position: static;
    }

    .stack-grid,
    .map-option-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #040404 100%);
    color: #bfbfbf;
    font-size: 14px;
    padding-top: 28px;
    margin-top: 30px;
}

/* Footer layout - neater grid */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 260px;
    gap: 28px;
    align-items: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-left { min-width: 180px; }
.footer-logo { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: 1px; }
.footer-tag { color: #d0d0d0; margin-top: 6px; margin-bottom: 8px; font-size: 14px; line-height: 1.6; }
.footer-contact { color: #cfcfcf; font-size: 14px; margin-bottom: 6px; }
.footer-location { color: #aeb0b2; font-size: 13px; margin-top: 6px; }

/* Footer-specific mailto styling: white and underlined */
.footer a[href^="mailto:contact@pioneerapplications.com"] {
    color: #fff;
    text-decoration: underline;
}
.footer a[href^="mailto:contact@pioneerapplications.com"]:hover {
    opacity: 0.95;
}

.footer-center { display: flex; justify-content: center; }
.footer-center { flex-wrap: wrap; gap: 4px 6px; }
.footer-center a { color: #dcdcdc; text-decoration: none; margin: 0 8px; font-size: 14px; padding: 6px 8px; }
.footer-center a:hover { color: #fff; }

.footer-right { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-right .social { display: flex; gap: 10px; }
.footer-right .social a { color: #dcdcdc; text-decoration: none; font-size: 14px; }
.footer-right .legal a { color: #9f9f9f; text-decoration: none; font-size: 13px; }

.footer-bottom { text-align: center; color: #8f8f8f; padding: 12px 0 18px; font-size: 13px; }

/* Subtle vertical divider before the right column on large screens */
@media (min-width: 1000px) {
    .footer-right { padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.03); }
}

/* Responsive: stack columns */
@media (max-width: 999px) {
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-right { align-items: center; border-left: none; }
    .footer-center { margin-top: 10px; }
}

/* Mobile-friendly CTA and primary button styles */
@media (max-width: 700px) {
    .cta, .btn-primary {
        display: block;
        width: 100%;
        max-width: 520px;
        margin: 12px auto;
        padding: 14px 18px;
        font-size: 16px;
        line-height: 1.2;
        border-radius: 10px;
        box-sizing: border-box;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0,0,0,0.05);
    }
    .cta { padding-top: 16px; padding-bottom: 16px; }
    .btn-primary { padding-top: 14px; padding-bottom: 14px; }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 84px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        align-items: center;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 18px;
        max-width: calc(100% - 62px);
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        padding-top: 14px;
    }

    .navbar.nav-open .nav-links {
        display: flex;
    }

    .navbar.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
        font-size: 15px;
    }

    .hero {
        min-height: 100svh;
        padding-top: 112px;
        padding-bottom: 64px;
        background-position: center center;
    }

    .hero-content {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .hero h2 {
        font-size: clamp(21px, 5vw, 28px);
        line-height: 1.25;
    }

    .hero-tagline {
        width: 100%;
        max-width: 32rem;
    }

    .section {
        padding: 68px 18px;
    }

    .build-features,
    .approach,
    .about-grid,
    .charity-grid,
    .insight-card,
    .article-section,
    .article-band,
    .article-cta {
        padding: 24px;
        border-radius: 22px;
    }

    .card-row {
        grid-template-columns: 1fr;
    }

    .split {
        flex-direction: column;
        gap: 40px;
    }

    .about-grid,
    .charity-grid {
        align-items: flex-start;
    }

    .partner {
        padding: 16px;
    }

    .footer-contact {
        line-height: 1.7;
    }

    .article-hero {
        padding-top: 112px;
        padding-bottom: 56px;
    }

    .article-hero-shell {
        gap: 22px;
        padding: 28px 24px;
    }

    .article-hero-copy h1 {
        max-width: none;
        font-size: clamp(42px, 12vw, 58px);
    }

    .article-lead {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero h2 br {
        display: none;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 16px;
        padding: 10px 12px;
        border-radius: 18px;
    }

    .section {
        padding: 56px 16px;
    }

    .lead {
        font-size: 16px;
    }

    .feature {
        padding: 12px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .card,
    .partner {
        border-radius: 18px;
    }

    .btn-outline {
        display: block;
        width: 100%;
        text-align: center;
    }

    .about-actions,
    .exp-ctas,
    .approach-ctas {
        width: 100%;
    }

    .footer-center {
        flex-direction: column;
    }

    .footer-center a {
        margin: 0;
    }

    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .map-option-header {
        flex-direction: column;
    }

    .option-index {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .article-meta,
    .tag-row {
        gap: 8px;
    }

    .article-meta span,
    .tag-row span {
        width: 100%;
        justify-content: center;
    }
}
