:root {
    /* ===== Recursus Design System ===== */

    /* Surfaces */
    --rc-navy-900: #0B1828;
    --rc-navy-800: #0F1E33;
    --rc-navy-700: #22456A;
    --rc-navy-100: #E8ECF2;
    --rc-paper: #F7F8FA;
    --rc-white: #FFFFFF;

    /* Brand accent */
    --rc-gold-500: #C9A227;
    --rc-gold-600: #B8901F;
    --rc-gold-400: #D4B547;

    /* Text on light backgrounds */
    --rc-ink: #1A202C;
    --rc-ink-muted: #4A5568;
    --rc-ink-faint: #9AA1A8;

    /* Text on dark backgrounds */
    --rc-on-dark: #FFFFFF;
    --rc-on-dark-muted: #CADCFC;
    --rc-on-dark-faint: #B8C4D4;

    /* Semantic colors */
    --rc-positive: #2C5F2D;
    --rc-negative: #8E2018;
    --rc-data-indigo: #3B3F8C;
    --rc-data-orange: #C9871A;

    /* ===== Legacy aliases (gradual migration) ===== */
    --jp-bg: var(--rc-paper);
    --jp-bg-alt: var(--rc-navy-100);
    --jp-ink: var(--rc-ink);
    --jp-muted: var(--rc-ink-muted);
    --jp-accent: var(--rc-navy-800);
    --jp-accent-soft: var(--rc-on-dark-muted);
    --jp-border: #E2E8F0;
    --jp-warning: var(--rc-negative);
    --jp-navy: var(--rc-navy-900);
    --jp-navy-light: var(--rc-navy-800);
    --jp-orange: var(--rc-gold-500);
    --jp-radius: 4px;
    --jp-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04);
    --rc-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ===== Recursus Component Classes ===== */

/* 4.1 Gold left rule */
.rc-rule {
    display: inline-grid;
    grid-auto-flow: row;
    padding-left: 14px;
    border-left: 4px solid var(--rc-gold-500);
    gap: 4px;
}

.rc-eyebrow {
    font: 700 13px/1.1 "Inter", system-ui, sans-serif;
    letter-spacing: .22em;
    color: var(--rc-gold-500);
    text-transform: uppercase;
}

.rc-eyebrow--light {
    color: var(--rc-on-dark-muted);
}

/* 4.2 Gold pill (date/status badge) */
.rc-pill {
    display: inline-block;
    padding: 10px 18px;
    background: var(--rc-gold-500);
    color: var(--rc-navy-900);
    font: 700 13px/1 "Inter", sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    border-radius: 0;
}

/* 4.3 KPI card with gold edge */
.rc-kpi {
    background: var(--rc-white);
    border-left: 4px solid var(--rc-gold-500);
    padding: 36px 48px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(18, 41, 61, 0.04);
}

.rc-kpi__value {
    font: 700 64px/1 "Source Serif 4", "Georgia", serif;
    color: var(--rc-ink-muted);
    letter-spacing: 0;
}

.rc-kpi__value--positive { color: var(--rc-positive); }
.rc-kpi__value--negative { color: var(--rc-negative); }

.rc-kpi__label {
    margin-top: 16px;
    font: 600 12px/1 "Inter", sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rc-ink-muted);
}

/* 4.4 Navy band */
.rc-band {
    background: var(--rc-navy-800);
    color: var(--rc-on-dark);
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-left: 4px solid var(--rc-gold-500);
}

.rc-band__num {
    font: 700 32px/1 "Source Serif 4", serif;
    color: var(--rc-gold-500);
}

.rc-band__title {
    font: 600 13px/1 "Inter", sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.rc-band__sub {
    color: var(--rc-on-dark-faint);
    font-style: italic;
    font-size: 13px;
}

/* Positive/negative text colors */
.rc-positive { color: var(--rc-positive); }
.rc-negative { color: var(--rc-negative); }

/* ===== Base Reset ===== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--rc-paper);
    color: var(--rc-ink);
    margin: 0;
    min-height: 100vh;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

/* Serif headlines */
h1, h2, h3, .section-title, .hero-title {
    font-family: "Source Serif 4", "Georgia", serif;
    color: var(--rc-ink);
    letter-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--jp-accent-soft);
    outline-offset: 3px;
}

body.nav-open,
body.modal-open {
    overflow: hidden;
}

.global-container {
    width: min(1120px, 100% - 2.5rem);
    margin: 0 auto;
    padding: 0 0 2rem;
}

.container {
    width: min(960px, 100% - 2rem);
    margin: 0 auto;
    padding: 2rem 0;
}

.card {
    background: var(--rc-white);
    border-radius: var(--jp-radius);
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    padding: 2rem;
    box-shadow: var(--jp-shadow-soft);
    margin-bottom: 1.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--rc-navy-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 50;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 64px;
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--rc-on-dark);
    min-width: 0;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rc-white);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-family: "Source Serif 4", 'Times New Roman', serif;
    font-weight: 600;
    min-width: 0;
}

.brand-text span:first-child {
    font-size: 15px;
    letter-spacing: 0;
    color: var(--rc-on-dark);
}

.brand-text span:last-child {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: var(--rc-gold-500);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.login-widget {
    position: relative;
}

.login-trigger {
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    padding: 0 16px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.login-trigger:hover {
    border-color: var(--rc-gold-500);
    color: var(--rc-gold-500);
    background: transparent;
}

.login-mark {
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: none;
}

.login-trigger .avatar-pill {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--jp-accent);
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.login-widget .login-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: #fff;
    border-radius: var(--jp-radius);
    box-shadow: var(--jp-shadow-soft);
    border: 1px solid var(--jp-border);
    padding: 0.6rem 0;
    min-width: 220px;
    display: none;
    z-index: 30;
}

.login-widget .login-dropdown a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    color: var(--jp-ink);
}

.login-widget .login-dropdown a:hover {
    background: var(--jp-bg-alt);
}

.login-widget.is-logged-in .login-dropdown[data-visible="true"] {
    display: block;
}

.hamburger {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hamburger:hover {
    border-color: var(--rc-gold-500);
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--rc-on-dark);
    display: block;
    position: relative;
}

.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--rc-on-dark);
    left: 0;
    transition: transform 0.2s ease;
}

.hamburger span::before {
    top: -6px;
}

.hamburger span::after {
    top: 6px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 900;
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-panel {
    background: var(--rc-navy-800);
    width: min(320px, 88vw);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: -25px 0 50px rgba(0, 0, 0, 0.22);
}

.nav-panel header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-panel h3 {
    font-family: "Source Serif 4", "Georgia", serif;
    margin: 0;
    font-size: 1.3rem;
}

.nav-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.65);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
}

.nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
}

.nav-links a:last-child {
    border-bottom: none;
}

.nav-footer {
    margin-top: auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.drawer-login {
    margin-top: auto;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .header-actions {
        margin-left: 0;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 1023px) {
    .site-header__inner {
        min-height: 56px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
    }

    .login-trigger {
        width: 40px;
        padding: 0;
        justify-content: center;
    }

    .login-trigger .login-label {
        display: none;
    }

    .login-mark {
        display: inline-block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-sidebar {
        order: -1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

.modal {
    position: fixed;
    inset: 0;
    background: rgba(34, 37, 42, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1000;
    padding: 1.5rem;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-panel {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--jp-shadow-soft);
    border: 1px solid var(--jp-border);
    position: relative;
}

.modal-panel header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-panel h2 {
    font-family: "Source Serif 4", "Georgia", serif;
    margin: 0;
    font-size: 1.4rem;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--jp-muted);
}

.modal-panel form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-panel label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--jp-muted);
}

.modal-panel input {
    border: 1px solid var(--jp-border);
    border-radius: 10px;
    padding: 0.8rem;
    font-size: 1rem;
    width: 100%;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-primary {
    background: var(--rc-gold-500);
    color: var(--rc-navy-900);
    box-shadow: none;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--rc-gold-600);
}

.btn-link {
    background: transparent;
    color: var(--rc-navy-800);
    padding-left: 0;
    padding-right: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--rc-navy-900);
    border: 1px solid var(--rc-navy-900);
}

.btn-secondary:hover {
    background: rgba(18, 41, 61, 0.05);
}

.page-main {
    flex: 1;
    overflow-x: hidden;
}

main {
    padding: 1.5rem 0 5rem;
}

.hero {
    margin-top: 2rem;
    background: var(--rc-white);
    border-radius: var(--jp-radius);
    border-left: 4px solid var(--rc-gold-500);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--jp-shadow-soft);
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.5rem;
    align-items: start;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rc-gold-500);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-family: "Source Serif 4", "Georgia", serif;
    margin-bottom: 1.5rem;
}

.hero-copy {
    font-size: 1.1rem;
    color: var(--jp-muted);
    margin-bottom: 2rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stats-card {
    border-radius: var(--jp-radius);
    background: var(--rc-white);
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    padding: 2rem;
    box-shadow: var(--jp-shadow-soft);
    height: fit-content;
}

.stats-card h3 {
    margin-top: 0;
    font-family: "Source Serif 4", "Georgia", serif;
    margin-bottom: 1.5rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-list li {
    list-style: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--jp-border);
    font-weight: 600;
}

.stats-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section {
    margin-top: 4.5rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: "Source Serif 4", "Georgia", serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 0.8rem;
}

.section-intro {
    color: var(--jp-muted);
    max-width: 760px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    border-radius: var(--jp-radius);
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    padding: 1.5rem;
    background: var(--rc-white);
    box-shadow: var(--jp-shadow-soft);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.allocation-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: inset 0 0 0 1px var(--jp-border);
}

.allocation-bar span {
    padding: 0.7rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

.allocation-bar span:nth-child(1) { background: var(--rc-navy-900); }
.allocation-bar span:nth-child(2) { background: var(--rc-navy-800); }
.allocation-bar span:nth-child(3) { background: var(--rc-gold-600); color: var(--rc-on-dark); }
.allocation-bar span:nth-child(4) { background: var(--rc-gold-500); color: var(--rc-navy-900); }

.pillars-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar {
    padding: 1.75rem;
    border-radius: var(--jp-radius);
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    background: var(--rc-white);
}

.pillar h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.leader-card {
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    border-radius: var(--jp-radius);
    padding: 1.5rem;
    background: var(--rc-white);
    box-shadow: var(--jp-shadow-soft);
}

.leader-card h4 {
    margin: 0 0 0.5rem;
}

.leader-card p {
    margin: 0;
    color: var(--jp-muted);
    font-size: 0.95rem;
}

.fund-card {
    margin-top: 2rem;
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    border-radius: var(--jp-radius);
    padding: 2rem;
    background: var(--rc-white);
    box-shadow: var(--jp-shadow-soft);
}

.fund-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.fund-detail {
    border: 1px solid var(--jp-border);
    border-radius: var(--jp-radius);
    padding: 1.35rem 1.4rem 1.45rem;
    background: var(--rc-white);
    min-height: 100%;
}

.fund-detail--lead {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.45rem;
    padding: 1.5rem 1.6rem 1.6rem;
    background: var(--rc-paper);
}

.fund-details dt {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--jp-muted);
    letter-spacing: 0.08em;
}

.fund-details dd {
    margin: 0.4rem 0 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.disclaimer {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--jp-warning);
    background: rgba(179, 91, 63, 0.08);
    border-radius: var(--jp-radius);
    color: var(--jp-ink);
    font-size: 0.95rem;
}

.legal-doc .section-heading {
    margin-bottom: 1.5rem;
}

.legal-meta {
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-card {
    display: grid;
    gap: 1.55rem;
}

.legal-card section {
    padding-bottom: 1.55rem;
    border-bottom: 1px solid var(--jp-border);
}

.legal-card section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.legal-card h2 {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    line-height: 1.3;
}

.legal-card p {
    margin: 0.6rem 0 0;
    color: var(--jp-muted);
    line-height: 1.7;
}

.legal-card a {
    color: var(--rc-navy-800);
    font-weight: 600;
}

.legal-emphasis {
    color: var(--rc-ink) !important;
    font-weight: 700;
    font-size: 0.92rem;
}

.contact-heading {
    padding-top: 64px;
    max-width: 580px;
}

.contact-heading .section-title {
    font-size: 40px;
    line-height: 1.2;
}

.contact-heading .section-intro {
    max-width: 560px;
    color: var(--rc-ink-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 580px) minmax(280px, 1fr);
    gap: 80px;
    align-items: start;
    margin-top: 2rem;
}

.contact-card {
    border-radius: var(--jp-radius);
    padding: 2rem;
    background: var(--rc-white);
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    box-shadow: var(--jp-shadow-soft);
}

.contact-sidebar {
    order: 2;
    border-radius: 8px;
    padding: 1.5rem;
    background: var(--rc-white);
    border: 1px solid var(--jp-border);
    box-shadow: var(--jp-shadow-soft);
}

.contact-sidebar h3 {
    margin: 0 0 1.25rem;
    font-size: 1.15rem;
}

.contact-sidebar dl {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.contact-sidebar dt {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--rc-ink);
}

.contact-sidebar dd {
    margin: 0.25rem 0 0;
    color: var(--rc-ink-muted);
    font-size: 14px;
    line-height: 1.5;
}

.contact-sidebar a {
    color: var(--rc-navy-800);
    font-weight: 700;
}

.contact-sidebar p {
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--jp-border);
    color: var(--rc-ink-muted);
    font-size: 13px;
    line-height: 1.55;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 13px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    color: #2D3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 44px;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

.form-group textarea {
    padding-top: 0.8rem;
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rc-navy-800);
    box-shadow: 0 0 0 3px rgba(15, 30, 51, 0.10);
}

.was-submitted .form-group input:invalid,
.was-submitted .form-group textarea:invalid,
.was-submitted .form-group select:invalid {
    border-color: #B91C1C;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form-disclaimer {
    margin: 1rem 0;
    color: var(--jp-muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

.contact-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    margin: 1rem 0 1.25rem;
    color: var(--rc-ink-muted);
    font-size: 13px;
    line-height: 1.5;
}

.contact-consent input {
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: 0.25rem;
    border: 2px solid #CBD5E0;
    border-radius: 3px;
    display: grid;
    place-items: center;
}

.contact-consent input:checked {
    background: var(--rc-navy-800);
    border-color: var(--rc-navy-800);
}

.contact-consent input:checked::after {
    content: "";
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-consent a {
    color: var(--rc-navy-800);
    font-weight: 700;
}

.contact-feedback {
    margin-top: 1rem;
    color: var(--jp-accent);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.contact-feedback[data-visible="true"] {
    opacity: 1;
}

.contact-submit {
    min-height: 48px;
    padding: 0 28px;
    border-radius: 4px;
    background: var(--rc-gold-500);
    color: var(--rc-navy-800);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-submit:hover {
    background: var(--rc-gold-600);
    color: var(--rc-navy-800);
}

.contact-submit:active {
    background: #A37D1A;
}

/* -- About page -- */

.about-hero {
    margin-top: 0.9rem;
}

.about-section .section-heading {
    margin-bottom: 1.1rem;
}

.about-section .section-intro,
.about-hero .section-intro {
    max-width: none;
}

.about-hero .hero-eyebrow,
.about-section .hero-eyebrow {
    margin-bottom: 0.35rem;
}

.about-hero .section-title,
.about-section .section-title {
    margin-bottom: 0.5rem;
}

.about-hero {
    margin-bottom: -0.8rem;
}

.about-section {
    margin-top: 2.25rem;
}

.about-leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.about-leader-card {
    min-width: 0;
    padding: 1.6rem 1.55rem;
    border-radius: var(--jp-radius);
    border: 1px solid var(--jp-border);
    border-left: 4px solid var(--rc-gold-500);
    box-shadow: var(--jp-shadow-soft);
}

.about-leader-card--kyle {
    order: 1;
}

.about-leader-card--matt {
    order: 2;
}

.about-leader-card h3 {
    margin: 0 0 0.85rem;
    font-family: "Source Serif 4", "Georgia", serif;
    font-size: 1.35rem;
    line-height: 1.25;
}

.about-leader-card p {
    color: #59606a;
    line-height: 1.68;
    font-size: 0.96rem;
}

.about-leader-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    line-height: 1.65;
    color: #3c4148;
    font-size: 0.95rem;
}

.about-leader-list li + li {
    margin-top: 0.2rem;
}

.about-leader-list strong {
    color: var(--jp-ink);
}

footer {
    background: var(--rc-navy-900);
    padding: 64px 0 32px;
    color: var(--rc-on-dark-faint);
}

footer a {
    color: var(--rc-on-dark);
}

footer a:hover {
    color: var(--rc-gold-500);
}

footer .brand-text span:first-child {
    color: var(--rc-on-dark);
}

footer .brand-text span:last-child {
    color: var(--rc-on-dark-muted);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 3rem;
    align-items: start;
    padding-bottom: 0;
}

footer .brand {
    align-items: flex-start;
}

footer .brand-mark {
    width: 24px;
    height: 24px;
}

.footer-column h3 {
    margin: 0 0 1rem;
    color: var(--rc-on-dark);
    font: 600 13px/1.2 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--rc-gold-500);
}

.footer-disclosure {
    margin-top: 48px;
    padding-top: 32px;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.55);
    max-width: 880px;
    display: grid;
    gap: 0.65rem;
    font-size: 13px;
    line-height: 1.6;
}

.footer-legal p {
    margin: 0;
}

.footer-bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    line-height: 1.4;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

/* -- Deck-style bar headers -- */

.deck-bar {
    background: var(--jp-navy);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.03em;
    border-radius: 4px 4px 0 0;
}

.deck-bar--light {
    background: var(--jp-navy-light);
}

/* -- Hero stats bar -- */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--jp-border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(34, 37, 42, 0.10);
}

.stat-item {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--jp-navy);
    font-family: "Source Serif 4", "Georgia", serif;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--jp-ink);
    margin-top: 0.25rem;
}

.stat-compare {
    font-size: 0.8rem;
    color: var(--rc-navy-800);
    font-weight: 500;
}

/* -- Performance section -- */

.perf-section {
    background: #fff;
    border-radius: var(--jp-radius);
    padding: 2.5rem;
    border: 1px solid var(--jp-border);
    box-shadow: var(--jp-shadow-soft);
}

.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.perf-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.perf-metric {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: var(--jp-bg);
    border: 1px solid var(--jp-border);
    border-radius: var(--jp-radius);
    padding: 1.25rem;
}

.perf-dt {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--jp-muted);
}

.perf-dd {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jp-navy);
    font-family: "Source Serif 4", "Georgia", serif;
    line-height: 1.2;
}

.perf-vs {
    font-size: 0.8rem;
    color: var(--rc-navy-800);
}

.vol-section h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jp-muted);
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.vol-bar-row {
    display: grid;
    grid-template-columns: 90px 1fr 55px;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.vol-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: right;
}

.vol-track {
    height: 28px;
    background: var(--jp-bg-alt);
    border-radius: 6px;
    overflow: hidden;
}

.vol-fill {
    height: 100%;
    background: var(--jp-navy);
    border-radius: 6px;
    transition: width 1s ease;
}

.vol-fill--mid {
    background: var(--rc-navy-700);
}

.vol-fill--high {
    background: var(--jp-orange);
}

.vol-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--jp-ink);
}

.perf-summary {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--jp-muted);
    line-height: 1.7;
}

.perf-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--jp-muted);
    font-style: italic;
}

/* -- Differentiator grid -- */

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.diff-card {
    border-radius: var(--jp-radius);
    border: 1px solid var(--jp-border);
    border-top: 3px solid var(--jp-navy);
    padding: 1.75rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(34, 37, 42, 0.05);
}

.diff-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
    color: var(--jp-navy);
}

.diff-card p {
    color: var(--jp-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.diff-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    color: var(--jp-navy);
}

.diff-icon svg {
    width: 100%;
    height: 100%;
}

/* -- Strategy columns -- */

.strategy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.strategy-col {
    border: 1px solid var(--jp-border);
    border-radius: var(--jp-radius);
    overflow: hidden;
    background: #fff;
}

.strategy-list {
    padding: 1.5rem;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.strategy-list li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--jp-border);
    font-size: 0.95rem;
    line-height: 1.6;
}

.strategy-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* -- Technology section -- */

.tech-section {
    background: var(--rc-paper);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    margin-top: 4.5rem;
    border-top: 1px solid var(--jp-border);
    border-bottom: 1px solid var(--jp-border);
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    display: none;
}

.tech-section::after {
    display: none;
}

.tech-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}

.tech-section .deck-bar--light {
    background: var(--rc-navy-800);
    color: var(--rc-on-dark);
    box-shadow: var(--jp-shadow-soft);
}

.tech-section .section-title,
.tech-section h2 {
    color: var(--jp-navy);
    font-family: "Source Serif 4", "Georgia", serif;
}

.tech-intro {
    color: #495561;
    max-width: 760px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-intro em {
    color: #355e57;
    font-style: italic;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(63, 100, 93, 0.18);
    border-radius: var(--jp-radius);
    padding: 1.5rem;
    box-shadow: 0 14px 30px rgba(34, 37, 42, 0.07);
    backdrop-filter: blur(2px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(63, 100, 93, 0.34);
    box-shadow: 0 20px 40px rgba(34, 37, 42, 0.11);
}

.tech-card h3 {
    color: #223654;
    margin-top: 0;
    font-size: 1.05rem;
}

.tech-card p {
    color: #5d6875;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* -- Terms section -- */

.terms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.terms-col {
    border: 1px solid var(--jp-border);
    border-radius: var(--jp-radius);
    overflow: hidden;
    background: #fff;
}

.terms-table {
    margin: 0;
    padding: 0;
}

.terms-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 1.5rem;
    border-bottom: 1px dashed var(--jp-border);
    gap: 1rem;
}

.terms-row:last-child {
    border-bottom: none;
}

.terms-row dt {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--jp-ink);
    flex-shrink: 0;
}

.terms-row dd {
    margin: 0;
    font-size: 0.9rem;
    color: var(--jp-muted);
    text-align: right;
}

/* -- Leader title accent -- */

.leader-title {
    color: var(--rc-gold-500);
    font-weight: 500;
}

.leader-card h4 {
    font-size: 1.15rem;
}

.fade-in {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .hero {
        padding: 3rem 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-card {
        max-width: 720px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .about-leadership-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-sidebar {
        order: -1;
    }

    .site-header__inner {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .global-container {
        width: min(1120px, 100% - 1.5rem);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .perf-grid {
        grid-template-columns: 1fr;
    }

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

    .strategy-columns {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .terms-wrapper {
        grid-template-columns: 1fr;
    }

    .tech-inner {
        padding: 2.5rem 1.5rem;
    }

    .fund-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2.3rem;
    }

    .about-leader-card {
        padding: 1.6rem;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-text span:first-child {
        font-size: 0.95rem;
    }

    .site-header__inner {
        gap: 0.75rem;
    }

    .brand {
        gap: 0.75rem;
        flex: 1 1 auto;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text span:first-child {
        font-size: 0.88rem;
        line-height: 1.15;
    }

    .brand-text span:last-child {
        font-size: 0.74rem;
        letter-spacing: 0.1em;
    }

    .header-actions {
        gap: 0.6rem;
    }

    .login-trigger {
        padding: 0.5rem 1rem;
        font-size: 0.92rem;
    }

    .hamburger {
        width: 42px;
        height: 42px;
    }

    .allocation-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .perf-metrics {
        grid-template-columns: 1fr;
    }

    .perf-dd {
        font-size: 1.6rem;
    }

    .vol-bar-row {
        grid-template-columns: 70px 1fr 50px;
    }

    .perf-section {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
    color: var(--rc-on-dark);
