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

:root {
    --bg: #F3F2ED;
    --text: #292B33;
    --text-secondary: #555;
    --text-dim: #999;
    --accent: #292B33;
    --border: rgba(41, 43, 51, 0.08);
    --card-bg: rgba(41, 43, 51, 0.03);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.header {
    padding: 64px 0 0;
}

.sub-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.sub-nav .nav-home {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.sub-nav .nav-home:hover {
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
    flex-direction: column;
    gap: 4px;
    transition: opacity 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-dim);
    transition: background 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--text);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(243, 242, 237, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-overlay nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.menu-overlay nav a:hover,
.menu-overlay nav a.active {
    color: var(--text);
}

.menu-close {
    position: absolute;
    top: 64px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.menu-close:hover {
    color: var(--text);
}

.sub-sep {
    display: none;
}

.logo {
    height: 22px;
    width: auto;
    margin-bottom: 32px;
}

.fund-label {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Sections --- */
.section {
    padding: 48px 0;
}

.section + .section {
    border-top: 1px solid var(--border);
}

.label {
    display: block;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.section h2 {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
}

.section h3 {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 8px;
}

.section p {
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-align: justify;
}

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

/* --- Pull Quote --- */
.pull-quote {
    border-left: 2px solid var(--text);
    padding: 16px 20px;
    margin: 24px 0;
}

.pull-quote p {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0;
}

.pull-quote .pq-source {
    font-size: 0.6875rem;
    color: var(--text-dim);
    margin-top: 8px;
    font-style: italic;
}

/* --- Data Cards --- */
.data-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.data-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.dc-label {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.dc-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.dc-desc {
    font-size: 0.6875rem;
    color: var(--text-dim);
    line-height: 1.4;
    font-weight: 300;
}

/* --- Focus Areas --- */
.areas {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.area h3 {
    margin-top: 0;
}

.area p {
    margin-bottom: 0;
}

/* --- Criteria List --- */
.criteria {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.criteria li {
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    padding-left: 16px;
    border-left: 2px solid rgba(41, 43, 51, 0.12);
}

.criteria li strong {
    font-weight: 500;
    color: var(--text);
}

/* --- Scenario Grid --- */
.scenario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.scenario-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.scenario-card.highlight {
    border-color: rgba(41, 43, 51, 0.15);
}

.sc-label {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.sc-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.sc-mcap {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text);
}

.sc-multiple {
    font-size: 0.6875rem;
    color: var(--text-dim);
    font-weight: 400;
    margin-bottom: 8px;
}

.sc-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 8px;
}

.sc-prob {
    font-size: 0.6875rem;
    color: var(--text-dim);
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* --- Strategy Pillars --- */
.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.pillar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.pillar-label {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.pillar-pct {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}

.pillar-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.pillar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pillar li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 3px 0 3px 14px;
    position: relative;
    font-weight: 300;
}

.pillar li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
}

/* --- Video Embed --- */
.video-embed {
    margin: 20px 0 24px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Protocol SVG --- */
.protocol-visual {
    margin: 20px 0;
}

.protocol-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Growth Chart --- */
.growth-chart-wrapper {
    margin: 24px 0;
}

.growth-chart-container {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 24px;
}

.growth-chart-container canvas {
    width: 100%;
    height: 280px;
}

.growth-chart-legend {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.growth-chart-source {
    margin-top: 8px;
    font-size: 0.625rem;
    color: var(--text-dim);
    font-weight: 300;
}

/* --- Risk Items --- */
.risk-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.risk-item:last-child {
    border-bottom: none;
}

.risk-category {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    min-width: 72px;
    padding-top: 2px;
}

.risk-content {
    flex: 1;
}

.risk-content strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text);
}

.risk-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}

/* --- Fund Terms Table --- */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.8125rem;
}

.terms-table th {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.terms-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.8125rem;
}

.terms-table td:first-child {
    font-weight: 500;
    color: var(--text);
    width: 180px;
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.team-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}

.team-role {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.team-bio {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* --- Contact Section --- */
.section-contact {
    padding-bottom: 80px;
}

.contact {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-dim);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    margin-top: 4px;
}

.contact:hover {
    color: var(--text);
    border-bottom-color: var(--text);
}

/* --- Footer --- */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-link {
    font-size: 0.75rem;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text);
}

.footer p {
    font-size: 0.6875rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* --- Contact Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(243, 242, 237, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 100;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    max-width: 340px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 300;
    color: #777;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

.modal-title {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
    margin-bottom: 32px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-form input,
.modal-form textarea {
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(41, 43, 51, 0.1);
    border-radius: 0;
    padding: 14px 0;
    outline: none;
    transition: border-color 0.3s ease;
    letter-spacing: 0.01em;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: #777;
    font-weight: 300;
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: rgba(41, 43, 51, 0.35);
}

.modal-form textarea {
    resize: none;
    line-height: 1.7;
}

.modal-form button {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 400;
    color: #777;
    background: transparent;
    border: none;
    padding: 20px 0 0;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    text-align: left;
}

.modal-form button:hover {
    color: var(--text);
}

/* --- Password Gate --- */
.pw-gate {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.pw-gate-inner {
    max-width: 320px;
    width: 100%;
}

.pw-back {
    font-size: 0.75rem;
    color: var(--text-dim);
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 48px;
}

.pw-back:hover {
    color: var(--text);
}

.pw-label {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.pw-desc {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pw-form input {
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(41, 43, 51, 0.1);
    border-radius: 0;
    padding: 14px 0;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
    letter-spacing: 0.02em;
}

.pw-form input::placeholder {
    color: #999;
    font-weight: 300;
}

.pw-form input:focus {
    border-color: rgba(41, 43, 51, 0.35);
}

.pw-error {
    font-size: 0.75rem;
    color: #c0392b;
    font-weight: 400;
    margin-top: 8px;
    min-height: 1.2em;
}

.pw-form button {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
    background: transparent;
    border: none;
    padding: 16px 0 0;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.pw-form button:hover {
    color: var(--text);
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .header {
        padding: 48px 0 0;
    }

    .logo {
        height: 20px;
        margin-bottom: 28px;
    }

    .header h1 {
        font-size: 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section {
        padding: 40px 0;
    }

    .data-cards {
        grid-template-columns: 1fr;
    }

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

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

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

    .risk-item {
        flex-direction: column;
        gap: 4px;
    }

    .growth-chart-container canvas {
        height: 200px;
    }

    .growth-chart-legend {
        flex-direction: column;
        gap: 6px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
