:root {
    --bg-color: #111B29;
    --surface-color: #1E2B3C;
    --surface-color-light: #314457;
    --text-primary: #F8FAFC;
    --text-sec: #94A3B8;
    --gold: #60A5FA;
    --gold-dark: #3B82F6;
    --gold-light: #93C5FD;
    --gold-glow: rgba(96, 165, 250, 0.15);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Sora', sans-serif;

    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

body {
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.logo,
.metric-value {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

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

.italic {
    font-style: italic;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.section-title.center {
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
    /* Ensure custom cursor on links */
}

/* Custom Cursor - Trading Theme */
.cursor {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 6px 1px var(--gold);
    /* Keeps the exact center visible */
}

.cursor-follower {
    width: 0px;
    height: 0px;
    border: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, border-radius 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Horizontal chart axis line */
.cursor-follower::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: width 0.3s, opacity 0.3s;
}

/* Vertical chart axis line */
.cursor-follower::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: height 0.3s, opacity 0.3s, background 0.3s;
}

/* Hover state: Morphs into a Bullish Candlestick */
body:hover .cursor-follower.hovering {
    width: 12px;
    height: 28px;
    background: rgba(96, 165, 250, 0.15);
    /* Translucent body */
    border-color: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
    /* Subtle green/gold glow */
}

body:hover .cursor-follower.hovering::before {
    width: 0px;
    /* Hide horizontal axis */
    opacity: 0;
}

body:hover .cursor-follower.hovering::after {
    /* Transforms into the vertical wick */
    height: 50px;
    opacity: 1;
    background: var(--gold);
    /* solid gold wick */
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.04;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    max-width: 150px;
    opacity: 0.5;
    animation: pulseLogo 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.5)); }
    100% { transform: scale(0.95); opacity: 0.3; }
}


/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s, padding 0.6s, border-bottom 0.6s;
    border-bottom: 1px solid transparent;
    transform: translateY(-100%);
}

body.loaded .navbar {
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(17, 27, 41, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.nav-logo {
    max-width: 120px;
    height: auto;
}

.logo-gold {
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.hover-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.hover-link:hover::after {
    width: 100%;
}

.hover-btn {
    border: 1px solid var(--gold-dark);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: var(--transition);
}

.hover-btn:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 27, 41, 0.95) 0%, rgba(17, 27, 41, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-desc {
    font-weight: 300;
    color: var(--text-sec);
    max-width: 500px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    border-left: 1px solid var(--gold-dark);
    padding-left: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border-radius: 4px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-sec);
    opacity: 0.6;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 1px solid var(--text-sec);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--text-sec);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

/* Metrics Section */
.metrics {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    position: relative;
    padding: 2rem 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    transition: text-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-card:hover .metric-value {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.metric-label {
    color: var(--text-sec);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-dark);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-card.visible .metric-line {
    width: 100%;
}

/* About Section */
.about {
    padding: 10rem 0;
    background: var(--surface-color);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-desc p {
    color: var(--text-sec);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.about-visual {
    flex: 1;
    position: relative;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--surface-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
}

.foundation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-visual:hover .foundation-img {
    transform: scale(1.05);
}

/* Manager Section */
.manager {
    padding: 8rem 0;
    background: var(--bg-color);
}

.manager-card {
    display: flex;
    gap: 4rem;
    background: var(--surface-color);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 4rem;
    position: relative;
}

.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.manager-info {
    flex: 2;
}

.manager-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.credentials {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-sec);
    letter-spacing: 1px;
}

.manager-title {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.manager-bio p {
    color: var(--text-sec);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.manager-bio strong {
    color: var(--text-primary);
    font-weight: 500;
}

.manager-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.frame {
    width: 250px;
    height: 300px;
    border: 1px solid var(--gold-dark);
    padding: 10px;
    position: relative;
}

.frame-inner {
    width: 100%;
    height: 100%;
    background: var(--surface-color-light);
    position: relative;
    overflow: hidden;
}

.frame-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, transparent, rgba(96, 165, 250, 0.1), transparent);
    transform: rotate(45deg);
}

.manager-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--gold);
}

/* Strategy section banner */
.strategy {
    padding: 6rem 0;
    background: var(--surface-color);
}

.strategy-banner {
    background: url('assets/strategy_bg.png') center/cover no-repeat;
    padding: 6rem 4rem;
    position: relative;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.strategy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 27, 41, 0.4);
    backdrop-filter: blur(2px);
}

.strategy-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.strategy-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.strategy-content p {
    color: var(--text-sec);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--bg-color);
    padding-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-sec);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-sec);
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--text-sec);
    margin-bottom: 0.5rem;
}

.contact-email {
    color: var(--gold);
    display: inline-block;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-sec);
}

.legal {
    display: flex;
    gap: 2rem;
}

.legal a:hover {
    color: var(--text-primary);
}

/* Awards Marquee Section */
.awards {
    padding: 6rem 0;
    background: var(--bg-color);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.marquee-content {
    display: inline-block;
    animation: scroll-marquee 50s linear infinite;
}

.marquee-content:has(img:hover) {
    animation-play-state: paused;
}

.marquee-content img {
    height: 220px;
    margin: 0 3rem;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.marquee-content img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(2.2);
    z-index: 10;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 0;
    background: var(--surface-color-light);
}

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

.phil-card {
    background: var(--surface-color);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 2px solid var(--gold);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phil-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
}

.phil-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phil-card p {
    color: var(--text-sec);
    font-size: 1rem;
    font-weight: 300;
}

/* Awards Badge */
.awards-badge {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.02);
}

.awards-badge p {
    margin-top: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    border-radius: 2px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.submit-btn {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    position: relative;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn .btn-loader {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: btnSpinner 0.8s linear infinite;
}

.submit-btn.loading .btn-loader {
    display: block;
}

@keyframes btnSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 27, 41, 0.7);
    backdrop-filter: blur(20px);
    z-index: 5000;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.form-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

.overlay-content {
    text-align: center;
    max-width: 500px;
}

.overlay-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.overlay-icon .loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(96, 165, 250, 0.15);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.overlay-icon.success svg {
    color: var(--gold);
    width: 80px;
    height: 80px;
}

.overlay-icon.error svg {
    color: #f44336;
    width: 80px;
    height: 80px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animations & Interaction */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right {
    transform: translateX(40px);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
    filter: blur(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
}

body.loaded .reveal-text {
    animation: reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-desc {
    animation-delay: 0.6s;
}

.hero-actions {
    animation-delay: 0.8s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 27, 41, 0.85);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.modal-content {
    background-color: var(--surface-color);
    margin: 10vh auto;
    padding: 2.5rem;
    border: 1px solid var(--gold-dark);
    width: 60%;
    max-width: 800px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
}

.close-modal {
    color: var(--text-sec);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: none;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--gold);
    text-decoration: none;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-flex,
    .manager-card,
    .footer-grid,
    .philosophy-grid {
        flex-direction: column;
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* simple mobile menu handling */
    }
}