:root {
    --bg: #050505;
    --bg-alt: #0a0a0a;
    --accent: #f7c948;          /* primary gold */
    --accent-soft: rgba(247,201,72,0.14);
    --accent-2: #facc15;        /* bright gold */
    --accent-deep: #a16207;     /* deep gold */
    --text: #f9fafb;
    --muted: #9ca3af;
    --border: #262626;
    --card-bg: #111827;
}

* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at 0 0, rgba(250, 204, 21, 0.18), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(234, 179, 8, 0.12), transparent 55%),
        #020203;
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrapper {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.94),
        rgba(0, 0, 0, 0.78),
        transparent
    );
    border-bottom: 1px solid rgba(250, 204, 21, 0.25);
}

.navbar-inner {
    position: relative;  
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* LOGO AREA – replace src with your fund logo */
.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 0, rgba(253, 224, 71, 0.35), transparent 60%),
        conic-gradient(
            from 200deg,
            #facc15,
            #f97316,
            #facc15,
            #eab308,
            #facc15
        );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow:
        0 0 22px rgba(250, 204, 21, 0.65),
        0 0 3px rgba(0, 0, 0, 0.8) inset;
}

.brand-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: #020202;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or "cover" depending on your logo */
}

.brand-text-line1 {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.brand-text-line2 {
    font-size: 1.02rem;
    font-weight: 600;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    padding: 0.35rem;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #facc15;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.nav-toggle span + span {
    margin-top: 5px;
}

/* X icon animation */
.nav-toggle.nav-toggle-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle.nav-toggle-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* DESKTOP NAV */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    color: #e5e7eb;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 999px;
    transition: width 0.22s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(250, 204, 21, 0.45);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease-out;
    background: radial-gradient(circle at 0 0, rgba(250, 204, 21, 0.18), rgba(17, 17, 17, 0.96));
    color: #fef9c3;
}

.btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #020617;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 16px 35px rgba(250, 204, 21, 0.48);
}

.btn-outline {
    background: transparent;
}

.btn-outline:hover {
    background: rgba(12, 12, 12, 0.98);
    border-color: rgba(250, 204, 21, 0.75);
}

/* HERO */

.hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    inset: -220px;
    opacity: 0.28;
    background:
        radial-gradient(circle at top, rgba(250, 204, 21, 0.6) 0, transparent 55%),
        radial-gradient(circle at right, rgba(248, 250, 252, 0.18) 0, transparent 55%),
        radial-gradient(circle at bottom, rgba(200, 138, 4, 0.6) 0, transparent 55%);
    filter: blur(18px);
    animation: gradientShift 24s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(10px, -10px, 0) scale(1.07);
    }
    100% {
        transform: translate3d(-10px, 10px, 0) scale(1.04);
    }
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.16rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 1px solid rgba(250, 204, 21, 0.4);
    background: rgba(0, 0, 0, 0.9);
    color: var(--muted);
}

.hero-kicker span.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.14rem 0.65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #fef3c7;
    font-size: 0.7rem;
    font-weight: 600;
}

.hero-title {
    margin-top: 1.4rem;
    font-size: clamp(2.2rem, 3.3vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.hero-title span.highlight {
    background: linear-gradient(135deg, #facc15, #f97316, #fde68a);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    margin-top: 1.2rem;
    font-size: 0.98rem;
    max-width: 34rem;
    color: var(--muted);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.pill {
    font-size: 0.78rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(82, 82, 82, 0.75);
    background: rgba(10, 10, 10, 0.96);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.9);
}

.hero-cta-row {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.hero-note {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-note strong {
    color: #fef3c7;
}

.hero-panel {
    border-radius: 1.5rem;
    padding: 1.3rem 1.4rem 1.2rem;
    background: radial-gradient(circle at top, rgba(250, 204, 21, 0.16), transparent 60%),
                linear-gradient(145deg, #020202, #111827);
    border: 1px solid rgba(250, 204, 21, 0.4);
    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.95),
        0 0 35px rgba(250, 204, 21, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% -10%, rgba(250, 204, 21, 0.28), transparent 55%),
        radial-gradient(circle at 100% 110%, rgba(202, 138, 4, 0.25), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.panel-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #e5e7eb;
}

.panel-tag {
    font-size: 0.72rem;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(250, 204, 21, 0.5);
    color: var(--muted);
}

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.metric {
    padding: 0.55rem 0.6rem;
    border-radius: 0.85rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(82, 82, 82, 0.7);
}

.metric-label {
    font-size: 0.72rem;
    color: var(--muted);
}

.metric-value {
    margin-top: 0.1rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #facc15;
}

.metric-footnote {
    margin-top: 0.2rem;
    font-size: 0.7rem;
    color: var(--muted);
}

.panel-footer {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--muted);
}

/* SECTION BASE */

section {
    padding: 4rem 0 3.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.4rem;
}

.section-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.section-title {
    margin-top: 0.5rem;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    margin-top: 0.5rem;
    font-size: 0.96rem;
    color: var(--muted);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 2.5rem;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--muted);
}

.about-highlights {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-card {
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(82, 82, 82, 0.7);
}

.about-card h4 {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    color: #facc15;
}

.about-card p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.about-taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.about-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(250, 204, 21, 0.5);
    color: #fef9c3;
}

/* STRATEGY */

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.7rem;
}

.strategy-card {
    border-radius: 1rem;
    padding: 1.1rem 1.2rem 1.1rem;
    background: radial-gradient(circle at top, rgba(234, 179, 8, 0.15), transparent 60%);
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(250, 204, 21, 0.5);
}

.strategy-card.secondary {
    background: radial-gradient(circle at top, rgba(245, 158, 11, 0.2), transparent 60%);
    border-color: rgba(245, 158, 11, 0.65);
}

.strategy-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.strategy-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.strategy-percentage {
    font-size: 1.3rem;
    font-weight: 600;
    color: #facc15;
}

.strategy-list {
    margin: 0.6rem 0 0;
    padding-left: 1rem;
    font-size: 0.83rem;
    color: var(--muted);
}

.strategy-list li + li {
    margin-top: 0.25rem;
}

/* METRICS */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.metric-card {
    border-radius: 1rem;
    padding: 0.9rem 0.95rem 0.85rem;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid rgba(82, 82, 82, 0.8);
}

.metric-card-label {
    font-size: 0.78rem;
    color: var(--muted);
}

.metric-card-value {
    margin-top: 0.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #facc15;
}

.metric-card-footnote {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: var(--muted);
}

/* DDFM */

.ddfm-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
}

.ddfm-points {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.87rem;
    color: var(--muted);
}

.ddfm-points li {
    display: flex;
    gap: 0.6rem;
    padding: 0.4rem 0;
}

.ddfm-dot {
    width: 8px;
    height: 8px;
    margin-top: 0.3rem;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 8px rgba(250, 204, 21, 0.85);
}

.ddfm-box {
    border-radius: 1.1rem;
    padding: 1rem 1rem 0.9rem;
    background: radial-gradient(circle at top, rgba(245, 158, 11, 0.2), transparent 60%);
    background-color: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(250, 204, 21, 0.65);
}

.ddfm-box h4 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
    color: #facc15;
}

.ddfm-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.4rem 0 0.6rem;
}

.ddfm-badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid rgba(82, 82, 82, 0.8);
    color: #fef9c3;
}

/* TIMELINE */

.timeline {
    border-radius: 1.2rem;
    padding: 1.3rem 1.2rem;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(82, 82, 82, 0.9);
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.timeline-list::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    background: linear-gradient(to bottom, #f97316, #facc15);
    opacity: 0.8;
}

.timeline-item {
    position: relative;
    padding-left: 1.7rem;
    padding-bottom: 0.9rem;
}

.timeline-bullet {
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid #020617;
    background: radial-gradient(circle, #facc15, #f97316);
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.9);
}

.timeline-year {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.timeline-title {
    font-size: 0.94rem;
    margin-top: 0.1rem;
}

.timeline-text {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* TEAM */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.team-card {
    border-radius: 1rem;
    padding: 0.9rem 0.95rem 1rem;
    background: radial-gradient(circle at top, rgba(250, 204, 21, 0.16), transparent 60%);
    background-color: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(82, 82, 82, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.team-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* AVATAR – plug your images here */
.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, rgba(250, 204, 21, 0.35), transparent 60%);
    padding: 2px;
    flex-shrink: 0;
}

.team-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    overflow: hidden;
    background: #020202;
}

.team-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* headshot style */
}

.team-text {
    min-width: 0;
}

.team-role {
    font-size: 0.78rem;
    color: var(--muted);
}

.team-name {
    margin-top: 0.1rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: #facc15;
}

.team-bio {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* CONTACT / CTA */

.cta {
    border-radius: 1.4rem;
    padding: 1.6rem 1.5rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.3), transparent 60%);
    background-color: #020202;
    border: 1px solid rgba(250, 204, 21, 0.65);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
}

.cta-title {
    font-size: 1.3rem;
}

.cta-text {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.cta-side {
    font-size: 0.82rem;
    color: var(--muted);
}

.cta-side strong {
    color: #fef9c3;
}

/* FOOTER */

footer {
    padding: 2.5rem 0 2rem;
    font-size: 0.78rem;
    color: var(--muted);
}

footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* ANIMATIONS: fade / slide */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* RESPONSIVE */

@media (max-width: 900px) {
    .navbar-inner {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .hero-inner,
    .about-grid,
    .strategy-grid,
    .ddfm-grid,
    .cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-inner {
        gap: 2.6rem;
    }

    .hero-panel {
        order: -1;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* show burger, hide links by default */
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 1.25rem;
        left: 1.25rem;
        margin-top: 0.4rem;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0.75rem;
        border: 1px solid rgba(250, 204, 21, 0.45);
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        font-size: 0.9rem;
        z-index: 999;
        
        /* Hidden by default with proper transition */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.nav-links-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        padding: 0.6rem 0;
        color: #f1f5f9;
        transition: color 0.2s ease;
    }

    .nav-links a:hover {
        color: #facc15;
    }

    .nav-links a::after {
        display: none; /* Remove the underline effect on mobile */
    }

    /* Style the button in mobile nav */
    .nav-links .btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.7rem 1.2rem;
    }

    /* Improve hamburger button visibility */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border: 1px solid rgba(250, 204, 21, 0.3);
        background: rgba(0, 0, 0, 0.7);
        transition: all 0.2s ease;
    }

    .nav-toggle:hover {
        background: rgba(250, 204, 21, 0.1);
        border-color: rgba(250, 204, 21, 0.5);
    }

    .nav-toggle span {
        width: 20px;
        height: 2px;
        background: #facc15;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .nav-toggle span + span {
        margin-top: 4px;
    }

    /* Hamburger to X animation */
    .nav-toggle.nav-toggle-open {
        background: rgba(250, 204, 21, 0.1);
    }

    .nav-toggle.nav-toggle-open span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .nav-toggle.nav-toggle-open span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }
}

@media (max-width: 640px) {
    section {
        padding: 3.2rem 0 2.6rem;
    }

    .nav-links {
        top: 65px; /* Adjust for smaller screens */
        height: calc(100vh - 65px);
    }
    
    .nav-toggle {
        width: 40px;
        height: 40px;
    }
    
    .nav-toggle span {
        width: 20px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem;
    }
    .metrics-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .cta {
        padding: 1.3rem 1.1rem;
    }
}
