:root {
    --primary-dark: #1a2b22;
    --primary-light: #2d4a3b;
    --accent-gold: #b89b6b;
    --kicker-gold: #8a6a1c;
    --eyebrow-brown: #7a6244;
    --bg-cream: #f4f1eb;
    --bg-light: #f9f8f6;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --border-color: #e0ddd6;
    --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
    --font-sans: "Source Sans 3", system-ui, sans-serif;
    --type-hero: clamp(2.15rem, 1.35rem + 2.15vw, 3.15rem);
    --type-page: clamp(2rem, 1.4rem + 1.6vw, 2.7rem);
    --type-section: clamp(1.65rem, 1.3rem + 0.9vw, 2.05rem);
    --type-card: 1.2rem;
    --type-body: 1.0625rem;
    --type-small: 0.975rem;
    --type-ui: 0.9375rem;
    --type-label: 0.75rem;
    --bs-primary: #1a2b22;
    --bs-primary-rgb: 26, 43, 34;
    --bs-secondary: #2d4a3b;
    --bs-secondary-rgb: 45, 74, 59;
    --bs-body-color: #1a1a1a;
    --bs-body-bg: #ffffff;
    --bs-border-color: #e0ddd6;
    --bs-link-color: #1a2b22;
    --bs-link-hover-color: #2d4a3b;
    --bs-body-font-family: "Source Sans 3", system-ui, sans-serif;
    --bs-font-sans-serif: "Source Sans 3", system-ui, sans-serif;
}

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #1a2b22;
    --bs-btn-border-color: #1a2b22;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #2d4a3b;
    --bs-btn-hover-border-color: #2d4a3b;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #142019;
    --bs-btn-active-border-color: #142019;
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #1a2b22;
    --bs-btn-disabled-border-color: #1a2b22;
}

.form-check-input:checked {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.form-check-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(26, 43, 34, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
.hero-title,
.page-title,
.section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.35;
}

p {
    line-height: 1.7;
}

.top-bar {
    background-color: var(--primary-dark);
    color: #ffffff;
    font-size: 0.8125rem;
    line-height: 1.5;
    padding: 14px 0;
}

.top-bar i {
    margin-right: 5px;
}

.navbar {
    background-color: #f7f7f7;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    padding: 0;
}

.site-logo {
    display: block;
    height: 78px;
    width: auto;
    max-width: min(280px, 70vw);
    object-fit: contain;
    object-position: left center;
}

.site-logo-modal {
    height: 72px;
    max-width: min(280px, 80%);
    margin-inline: auto;
    object-position: center;
    mix-blend-mode: normal;
    background: transparent;
}

.navbar-brand span {
    font-size: var(--type-label);
    font-weight: 600;
    color: var(--kicker-gold);
    display: block;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
}

.nav-link {
    color: var(--text-dark) !important;
    font-size: var(--type-ui);
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-dark) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-dark);
}

.btn-explore {
    background-color: var(--primary-dark);
    color: #ffffff;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: var(--type-ui);
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-explore:hover {
    background-color: var(--primary-light);
    color: #ffffff;
}

.nav-search {
    width: 0;
    opacity: 0;
    padding: 0;
    border: 0;
    transition: width 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
}

.nav-search.is-open {
    width: 160px;
    opacity: 1;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-right: 8px;
}

.search-toggle {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1;
}

.hero-section {
    background-color: var(--bg-cream);
    background-image: url("/images/home/bio%20reaserach%20hero%20image.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: var(--type-hero);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    max-width: 34rem;
}

.btn-primary-custom {
    background-color: var(--primary-dark);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.7rem 1.4rem;
    font-size: var(--type-ui);
    font-weight: 600;
    line-height: 1.3;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--primary-light);
    color: #ffffff;
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    padding: 0.7rem 1.4rem;
    font-size: var(--type-ui);
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 30px 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 490px;
    display: flex;
    flex-direction: column;
}

.hero-card h5 {
    font-size: 1.05rem;
    line-height: 1.35;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-card p {
    font-size: var(--type-small);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
    margin-top: 8px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e5c48;
    font-family: var(--font-sans);
    font-size: var(--type-small);
    font-weight: 600;
    line-height: 1.35;
}

.hero-point i {
    color: #1e5c48;
    font-size: 1.35rem;
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-point i::before {
    vertical-align: 0;
    line-height: 1;
}

.hero-badge {
    background-color: #eef2f0;
    color: var(--primary-dark);
    font-size: var(--type-label);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    flex: 0 0 auto;
}

.hero-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.45;
    padding-top: 22px;
    margin-top: auto;
}

.hero-kicker {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--eyebrow-brown);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-features {
    margin-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem 2rem;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
    font-size: 0.875rem;
    line-height: 1.35;
    text-align: center;
}

.hero-feature-item i {
    color: #a6843c;
    font-size: 26px;
    width: 28px;
    height: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-item i::before {
    vertical-align: 0;
    line-height: 1;
}

.section-padding {
    padding: clamp(3.5rem, 5vw, 4.75rem) 0;
}

.section-title {
    font-size: var(--type-section);
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: var(--type-body);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 40rem;
}

.view-all-link {
    align-items: center;
    gap: 7px;
    font-size: var(--type-ui);
    font-weight: 600;
    color: #1a4d3c;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

.view-all-link-light {
    color: #ffffff;
}

.view-all-link-strong {
    color: #1a4d3c;
    font-weight: 600;
}

.view-all-link-strong:hover {
    color: #123528;
}

.guide-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.guide-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guide-card-img {
    height: 180px;
    background-color: var(--bg-cream);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    position: relative;
}

.guide-card-img .badge {
    background-color: #ffffff;
    color: #1a2b22;
    font-size: var(--type-label);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.guide-card-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.guide-card-body h5 {
    font-size: var(--type-card);
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.guide-card-body p {
    font-size: var(--type-small);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.guide-card-body a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: var(--type-ui);
    color: #1a4d3c;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.guide-card-body a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.guide-card-body a i {
    font-size: 0.95rem;
    color: inherit;
}

.guide-card-body a:hover {
    color: #123528;
    text-decoration: underline;
}

.guide-card-body h5 a {
    position: relative;
    z-index: 2;
    margin-top: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    white-space: normal;
    display: inline;
}

.guide-card-body h5 a::after {
    content: none;
}

.guide-card-body h5 a:hover {
    color: #1a4d3c;
}

.standard-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px 22px 24px;
    height: 100%;
}

.standard-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.standard-card i {
    font-size: 1.7rem;
    color: #a6843c;
    width: 1.9rem;
    height: 1.9rem;
    flex: 0 0 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.standard-card i::before {
    vertical-align: 0;
    line-height: 1;
}

.standard-card h5 {
    font-size: 1.05rem;
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0;
    color: #1a2b22;
}

.standard-card p {
    font-size: var(--type-small);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 0;
}

.context-section {
    position: relative;
    background-color: #f6f3ee;
    padding: 80px 0;
    overflow: hidden;
}

.context-section-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.context-section .container {
    position: relative;
    z-index: 1;
}

.context-kicker {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.venn-container {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 360 / 340;
    margin: 0 auto;
}

.venn-circle {
    position: absolute;
    width: 52.2%;
    height: 55.3%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(0.58rem, 2.2vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    padding: 0.75rem;
}

.venn-circle i {
    font-size: clamp(1.05rem, 3.2vw, 1.55rem);
    width: 1.7rem;
    height: 1.7rem;
    margin-bottom: 6px;
    color: #1a2b22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.venn-circle i::before {
    vertical-align: 0;
    line-height: 1;
}

.venn-circle span {
    font-size: clamp(0.48rem, 1.6vw, 0.6rem);
    font-weight: 400;
    color: var(--text-muted);
}

.venn-top {
    top: 0;
    left: 23.9%;
    justify-content: flex-start;
    padding-top: 32px;
    background-color: rgba(212, 226, 211, 0.85);
}

.venn-bottom-left {
    bottom: 0;
    left: 2.2%;
    justify-content: flex-end;
    padding-bottom: 28px;
    background-color: rgba(224, 228, 218, 0.9);
}

.venn-bottom-right {
    bottom: 0;
    right: 2.2%;
    justify-content: flex-end;
    padding-bottom: 24px;
    background-color: rgba(216, 226, 212, 0.85);
}

.venn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    width: 31.1%;
    height: 32.9%;
    background-color: #a6843c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.5rem, 1.8vw, 0.68rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
    z-index: 10;
}

.context-aside {
    --bs-border-color: rgba(26, 43, 34, 0.14);
    max-width: 100%;
}

.context-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.55rem;
    line-height: 1.4;
    margin: 0;
}

.context-rule {
    display: block;
    width: 52px;
    height: 2px;
    background-color: #c8a667;
    margin: 26px 0 20px;
}

.context-caption {
    font-size: var(--type-label);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.7;
    margin: 0;
}

.section-kicker {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.source-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.source-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.source-card-head:has(.source-card-logo) {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.source-card-head > i {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.source-card-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
}

.source-card-logo img {
    display: block;
    max-width: 148px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.source-card h5 {
    font-size: 1.0625rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0;
}

.source-card p {
    font-size: var(--type-small);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.source-card .source-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: var(--type-ui);
    color: #1a4d3c;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.source-card .source-link::after {
    content: "";
    position: absolute;
    inset: 0;
}

.source-card .source-link i {
    font-size: 0.95rem;
    color: inherit;
}

.source-card .source-link:hover {
    color: #123528;
    text-decoration: underline;
}

.faq-section {
    position: relative;
    overflow: hidden;
    background-color: #f6f4ef;
    padding: clamp(3.5rem, 5vw, 4.75rem) 0;
}

.faq-section-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
}

.accordion-button {
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-dark);
    padding: 18px 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2b22'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-size: var(--type-small);
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 40px 0 20px 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    background: #f7f6f4;
    border-radius: 12px;
    padding: 4px 8px;
}

.footer-brand .site-logo {
    height: 70px;
}

.footer-brand span {
    font-size: var(--type-label);
    font-weight: 500;
    color: #d5ddd8;
    display: block;
    letter-spacing: 0.06em;
}

.footer-links a {
    color: #d5ddd8;
    text-decoration: none;
    font-size: var(--type-ui);
    line-height: 1.4;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: var(--type-ui);
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-light-custom:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #d5ddd8;
}

.page-prose {
    max-width: 720px;
}

.page-prose p {
    color: var(--text-muted);
    font-size: var(--type-body);
    line-height: 1.75;
}

.page-hero {
    background-color: var(--bg-cream);
    background-image: linear-gradient(180deg, #fbfaf6, #f4f0e8);
    border-bottom: 1px solid #ebe4d9;
}

.page-hero-faq,
.page-hero-safety,
.page-hero-evidence,
.page-hero-terms,
.page-hero-privacy {
    position: relative;
    overflow: hidden;
    background-image: none;
    background-color: #f6f4ef;
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.page-hero-faq .container,
.page-hero-safety .container,
.page-hero-evidence .container,
.page-hero-terms .container,
.page-hero-privacy .container {
    position: relative;
    z-index: 2;
}

.page-hero-safety::after,
.page-hero-evidence::after,
.page-hero-faq::after,
.page-hero-terms::after,
.page-hero-privacy::after,
.faq-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(246, 243, 238, 0.88) 0%, rgba(246, 243, 238, 0.72) 40%, rgba(246, 243, 238, 0.32) 68%, rgba(246, 243, 238, 0.12) 100%);
}

.faq-section::after {
    background: linear-gradient(90deg, rgba(246, 243, 238, 0.88) 0%, rgba(246, 243, 238, 0.8) 42%, rgba(246, 243, 238, 0.72) 100%);
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #bfd0c7;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--primary-dark);
    font-size: var(--type-label);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-title {
    font-size: var(--type-page);
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.page-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.45;
    margin-bottom: 14px;
}

.page-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 26px;
}

.micro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.micro-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.micro-trust i {
    color: var(--kicker-gold);
    font-size: 1.05rem;
    line-height: 1;
}

.hero-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    padding: 28px 30px;
    max-width: 420px;
}

.hero-panel-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.hero-panel-list {
    display: grid;
    gap: 13px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.hero-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: var(--type-small);
    line-height: 1.5;
    color: var(--text-dark);
}

.hero-panel-list i {
    color: var(--primary-dark);
    font-size: 1.05rem;
    line-height: 1.3;
}

.hero-panel-note {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 22px;
    height: 100%;
}

.round-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #f3eadc;
    color: var(--kicker-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 14px;
}

.info-card h3 {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.info-card .mini-kicker {
    font-size: var(--type-label);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--kicker-gold);
    margin-bottom: 10px;
}

.info-card p {
    font-size: var(--type-small);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

.info-card-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-card-row .round-icon {
    margin-bottom: 0;
    flex: 0 0 46px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: var(--type-small);
    line-height: 1.65;
    color: var(--text-muted);
}

.check-list li strong {
    color: var(--text-dark);
    font-weight: 700;
}

.check-badge {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.check-badge.is-gold {
    background-color: #f3eadc;
    color: var(--kicker-gold);
}

.check-badge.is-warning {
    background-color: #fbf0e4;
    color: #a2642a;
}

.callout-panel {
    background-color: var(--primary-dark);
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.callout-panel h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.callout-panel p {
    font-size: var(--type-small);
    line-height: 1.7;
    color: #e4ebe7;
    margin-bottom: 0;
    max-width: 520px;
}

.reminder-card {
    background-color: #f6f3ee;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--kicker-gold);
    border-radius: 12px;
    padding: 24px 26px;
    height: 100%;
}

.reminder-card h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.reminder-card p {
    font-size: var(--type-small);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

.topic-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.topic-card-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
}

.topic-card-head .round-icon {
    margin-bottom: 0;
    flex: 0 0 46px;
}

.topic-card h3 {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: var(--text-dark);
}

.topic-card p {
    font-size: var(--type-small);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.topic-card .source-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: var(--type-ui);
    color: #1a4d3c;
    font-weight: 600;
    text-decoration: none;
}

.topic-card .source-link + .source-link {
    margin-top: 8px;
}

.topic-card .source-link:hover {
    color: #123528;
    text-decoration: underline;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    border-radius: 50px;
    padding: 9px 16px;
    min-width: 260px;
}

.faq-search i {
    color: var(--text-muted);
}

.faq-search input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    font-size: var(--type-ui);
    color: var(--text-dark);
}

.faq-card-list .accordion-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 10px;
}

.faq-card-list .accordion-button {
    font-weight: 600;
    padding: 16px 18px;
}

.faq-card-list .accordion-body {
    padding: 0 18px 18px;
}

.side-panel {
    position: relative;
    overflow: hidden;
    background-color: #143126;
    border: 1px solid #dde4d9;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
}

.side-panel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.side-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 40, 30, 0.78) 0%, rgba(16, 40, 30, 0.7) 100%);
}

.side-panel-content {
    position: relative;
    z-index: 2;
}

.side-panel h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.side-panel p {
    font-size: var(--type-small);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1.1rem;
}

.side-panel .btn-primary-custom,
.side-panel .btn-outline-custom {
    display: block;
    text-align: center;
    margin-left: 0;
}

.side-panel .btn-outline-custom {
    background-color: #ffffff;
    margin-top: 10px;
}

.source-logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.source-logo-grid a {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: #ffffff;
    padding: 10px 8px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.source-logo-grid a:hover {
    border-color: #1a6b4a;
    box-shadow: 0 4px 12px rgba(26, 107, 74, 0.08);
}

.source-logo-grid img {
    display: block;
    max-width: 100%;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.meta-grid div {
    border: 1px solid var(--border-color);
    background-color: #fbfaf7;
    border-radius: 10px;
    padding: 12px 14px;
}

.meta-grid small {
    display: block;
    font-size: var(--type-label);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.meta-grid b {
    font-size: var(--type-small);
    color: var(--text-dark);
}

.meta-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    background-color: var(--primary-dark);
    color: #ffffff;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.meta-contact-btn:hover {
    background-color: var(--primary-light);
    color: #ffffff;
}

.placeholder-text {
    color: var(--kicker-gold);
}

.policy-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 5vw, 4.75rem) 0;
}

.policy-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.policy-banner .container {
    position: relative;
    z-index: 2;
}

.policy-banner.is-gray::after,
.policy-banner.is-green::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.policy-banner.is-gray::after {
    background: linear-gradient(90deg, rgba(246, 243, 238, 0.92) 0%, rgba(246, 243, 238, 0.82) 46%, rgba(246, 243, 238, 0.68) 100%);
}

.policy-banner.is-green {
    color: #ffffff;
}

.policy-banner.is-green::after {
    background: linear-gradient(90deg, rgba(16, 40, 30, 0.86) 0%, rgba(16, 40, 30, 0.68) 48%, rgba(16, 40, 30, 0.5) 100%);
}

.policy-banner.is-green .section-kicker {
    color: #e7d7b4;
}

.policy-banner.is-green .section-title {
    color: #ffffff;
}

.policy-banner.is-green .section-desc {
    color: rgba(255, 255, 255, 0.88);
}

.policy-banner.is-green .view-all-link {
    color: #ffffff;
}

.policy-banner.is-sage {
    background-color: #eef1e8;
}

.policy-banner.is-cream {
    background-color: #f4f1eb;
}

.policy-banner.is-logo {
    background-color: #f7f5f1;
}

.policy-banner.is-logo .policy-banner-image {
    width: 40%;
    left: auto;
    right: 0;
    object-fit: contain;
    object-position: calc(100% - 3rem) center;
    opacity: 0.14;
    padding: 2rem 2.5rem;
}

@media (max-width: 767.98px) {
    .policy-banner.is-logo .policy-banner-image {
        width: 70%;
        opacity: 0.08;
        object-position: center bottom;
        padding: 1rem;
    }
}

.notice-panel {
    border: 1px solid #e6d5aa;
    border-left: 4px solid var(--kicker-gold);
    background-color: #fbf6ea;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: var(--type-small);
    line-height: 1.7;
    color: #6f5512;
}

.notice-panel b {
    display: block;
    color: #5a430c;
    font-weight: 700;
    margin-bottom: 4px;
}

.notice-panel.is-danger {
    border-color: #e8cdc7;
    border-left-color: #a8443a;
    background-color: #fcf2f0;
    color: #8a3c32;
}

.notice-panel.is-danger b {
    color: #742d28;
}

.policy-block {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 26px 28px;
    height: 100%;
}

.policy-block h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.policy-block p {
    font-size: var(--type-small);
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-block .check-list {
    margin-top: 16px;
}

.policy-block .check-list li {
    border: 0;
    border-top: 1px solid var(--border-color);
    border-radius: 0;
    padding: 14px 0;
    background: transparent;
}

.policy-block .check-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.policy-table {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #ffffff;
}

.policy-table table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    min-width: 760px;
}

.policy-table th,
.policy-table td {
    padding: 15px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border-color);
}

.policy-table th {
    background-color: #faf9f5;
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.policy-table td {
    font-size: var(--type-small);
    line-height: 1.7;
    color: var(--text-muted);
}

.policy-table tr:last-child td {
    border-bottom: 0;
}

.rights-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px 20px;
    height: 100%;
}

.rights-card b {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.rights-card span {
    font-size: var(--type-small);
    line-height: 1.65;
    color: var(--text-muted);
}

.refs-hero {
    position: relative;
    overflow: hidden;
    background-color: #f6f3ee;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    border-bottom: 1px solid #ebe4d9;
}

.refs-hero-image,
.refs-continue-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
}

.refs-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(246, 243, 238, 0.96) 0%, rgba(246, 243, 238, 0.9) 46%, rgba(246, 243, 238, 0.42) 72%, rgba(246, 243, 238, 0.18) 100%);
}

.refs-hero .container,
.refs-continue .container {
    position: relative;
    z-index: 2;
}

.refs-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kicker-gold);
    margin-bottom: 0.85rem;
}

.refs-kicker.is-light {
    color: #e7d7b4;
}

.refs-title {
    font-size: clamp(2.4rem, 1.6rem + 2vw, 3.4rem);
    margin-bottom: 0.75rem;
}

.refs-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.refs-copy {
    max-width: 38rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.refs-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 38rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 8px 8px 14px;
    box-shadow: 0 8px 24px rgba(26, 43, 34, 0.06);
}

.refs-search i {
    color: var(--text-muted);
}

.refs-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: var(--type-ui);
    color: var(--text-dark);
}

.refs-search button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 8px;
    background: var(--primary-dark);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 18px;
}

.refs-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: var(--type-small);
    color: var(--text-muted);
}

.refs-popular button {
    border: 1px solid #d9d3c8;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.85rem;
}

.refs-popular button:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.refs-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.15rem);
    line-height: 1.35;
    color: var(--primary-dark);
    text-align: right;
    margin: 0;
}

.refs-list {
    display: grid;
    gap: 12px;
}

.refs-item {
    display: grid;
    grid-template-columns: 132px 1fr auto;
    gap: 16px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 18px;
}

.refs-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    min-height: 48px;
}

.refs-mark img {
    display: block;
    max-width: 100%;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.refs-item h3 {
    font-size: 1.02rem;
    margin-bottom: 0.15rem;
}

.refs-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--type-small);
}

.refs-item > a {
    color: #1a6b4a;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.refs-item > a:hover {
    text-decoration: underline;
}

.refs-tips {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 16px;
}

.refs-tips li {
    display: flex;
    gap: 14px;
}

.refs-tip-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef3ea;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.refs-tips h3 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.refs-tips p {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--type-small);
}

.refs-empower {
    background: #f3f6ef;
    border-radius: 16px;
    padding: 22px 22px 18px;
}

.refs-empower h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
}

.refs-empower p {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--type-small);
}

.refs-continue {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    color: #ffffff;
}

.refs-continue::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(16, 40, 30, 0.84) 0%, rgba(16, 40, 30, 0.62) 48%, rgba(16, 40, 30, 0.42) 100%);
}

.refs-continue-title {
    font-size: clamp(2rem, 1.4rem + 1.6vw, 2.8rem);
    color: #ffffff;
    max-width: 18ch;
    margin-bottom: 0.75rem;
}

#study-reading .refs-continue-title,
#faq-topics .refs-continue-title,
#sources .refs-continue-title,
#red-flags .refs-continue-title {
    max-width: 22ch;
}

.refs-continue-copy {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.75rem;
}

.refs-next {
    position: relative;
    height: 100%;
    background: #f7f4ee;
    color: var(--text-dark);
    border-radius: 16px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
}

.refs-next.is-dark {
    background: #143126;
    color: #ffffff;
}

.refs-next-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.refs-next h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.refs-next.is-dark h3,
.refs-next.is-dark a {
    color: #ffffff;
}

.refs-next p {
    color: var(--text-muted);
    font-size: var(--type-small);
    margin-bottom: 1rem;
}

.refs-next.is-dark p {
    color: rgba(255, 255, 255, 0.82);
}

.refs-next a {
    margin-top: auto;
    color: #1a6b4a;
    font-weight: 700;
    text-decoration: none;
}

.refs-next a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.refs-next a:hover {
    text-decoration: underline;
}

.refs-leave {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 1.25rem 0 0;
    font-size: var(--type-small);
    color: rgba(255, 255, 255, 0.86);
}

.refs-leave a {
    color: #ffffff;
    font-weight: 700;
}

.refs-faq {
    border-bottom: 1px solid var(--border-color);
}

.refs-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.refs-faq-btn i {
    transition: transform 0.2s ease;
}

.refs-faq-btn:not(.collapsed) i {
    transform: rotate(45deg);
}

.refs-faq .collapse p,
.refs-faq .collapsing p {
    color: var(--text-muted);
    font-size: var(--type-small);
    padding-bottom: 16px;
    margin: 0;
}

@media (max-width: 767.98px) {
    .refs-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .refs-mark {
        justify-content: flex-start;
        width: auto;
        min-height: 0;
    }

    .refs-mark img {
        max-width: 148px;
    }

    .refs-quote {
        text-align: left;
    }

    .refs-hero::after,
    .page-hero-safety::after,
    .page-hero-evidence::after,
    .page-hero-faq::after,
    .page-hero-terms::after,
    .page-hero-privacy::after,
    .faq-section::after {
        background: linear-gradient(180deg, rgba(246, 243, 238, 0.94) 0%, rgba(246, 243, 238, 0.82) 70%, rgba(246, 243, 238, 0.55) 100%);
    }

    .policy-banner.is-gray::after {
        background: linear-gradient(180deg, rgba(246, 243, 238, 0.94) 0%, rgba(246, 243, 238, 0.82) 70%, rgba(246, 243, 238, 0.68) 100%);
    }

    .policy-banner.is-green::after {
        background: linear-gradient(180deg, rgba(16, 40, 30, 0.88) 0%, rgba(16, 40, 30, 0.74) 70%, rgba(16, 40, 30, 0.58) 100%);
    }
}
