:root {
    /* Colors */
    --primary-blue: #3b82f6;
    /* Electric Blue from reference */
    --primary-blue-hover: #2563eb;
    --dark-navy: #0f172a;
    /* Dark text/headings */
    --text-gray: #475569;
    /* Body text */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --max-width: 1200px;

    /* Border Radius */
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-gray);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-navy);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.sub-heading {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Navbar */
.navbar {
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-blue), #60a5fa);
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Mobile Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--dark-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transform hamburger to X when active */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
    width: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background blob effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Text slightly wider */
    gap: 4rem;
    align-items: end;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    /* No visual overflow hidden to let toast float out if needed, but keeping it for image radius */
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
    /* Simple entrance animation */
    animation: fadeInScale 1s ease-out;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    padding-bottom: 0.1em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--dark-navy), #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    max-width: 520px;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.stat-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Shimmer Effect for Capital Raised */
.shimmer-text {
    background: linear-gradient(to right, var(--primary-blue) 0%, #60a5fa 40%, #ffffff 50%, #60a5fa 60%, var(--primary-blue) 100%);
    background-size: 200% auto;
    color: var(--primary-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear 2;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Approach Section */
.approach-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9 30%, #f8fafc);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem;
    border-radius: 2rem;
    background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.step-item:hover {
    border-color: #e2e8f0;
}

.step-item.active {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.1);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.step-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.step-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-navy);
}

.step-item.active .step-toggle {
    background: var(--dark-navy);
    border-color: var(--dark-navy);
    color: white;
    transform: rotate(180deg);
}

.step-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active .step-body {
    max-height: 200px;
    /* Approximate max height */
    opacity: 1;
    margin-top: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.approach-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Clean background instead of gradient */
}

.approach-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(59, 130, 246, 0.15));
    transition: transform 0.5s ease;
}

.approach-img:hover {
    transform: scale(1.02);
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(239, 246, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.about-header .btn {
    position: absolute;
    right: 0;
}

.about-header h2 {
    font-size: 3rem;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: end;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    background: #f8fafc;
    overflow: hidden;
    /* Clip the zoomed image */
}

.about-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.5s ease;
    transform: scale(1.25);
    /* Zoomed in by default */
}

.about-image:hover .about-img {
    transform: scale(1.3);
    /* Slight zoom on hover relative to base */
}



.about-text h3 {
    font-size: 3rem;
    line-height: 1.3;
    padding-bottom: 0.1em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--dark-navy), #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Contact Page Styles */
.hero-pod {
    background: var(--dark-navy);
    margin: 1rem 4rem 0;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.contact-page .navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.contact-page .navbar .logo,
.contact-page .navbar .nav-links a,
.contact-page .navbar .dropdown-toggle {
    color: white;
}

.contact-page .footer {
    border-top: none;
}

.contact-page .navbar .dropdown-menu {
    background: var(--dark-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page .navbar .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-page .navbar .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.contact-page .navbar .logo-icon {
    background: white;
}

.contact-hero {
    padding: 2rem 0 12rem;
    text-align: center;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    margin-top: -8rem;
    padding-bottom: 8rem;
    position: relative;
    z-index: 5;
}

.contact-form-card {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.12);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.95rem;
}

.form-input {
    background: #f1f5f9;
    border: none;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark-navy);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: #e2e8f0;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-textarea {
    min-height: 180px;
    resize: vertical;
}

.form-button {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .stats-container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Reduce section padding for mobile */
    .hero-section,
    .stats-section,
    .why-us-section,
    .approach-section,
    .about-section {
        padding: 3rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-toast {
        right: 50%;
        transform: translateX(50%);
        bottom: -1rem;
        width: 90%;
        justify-content: center;
        animation: floatMobile 6s ease-in-out infinite;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translate(50%, 0);
        }

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

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

    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        /* Reduce padding inside card */
    }

    .approach-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-header {
        flex-direction: column;
        align-items: center;
        /* Center align */
        text-align: center;
        gap: 1rem;
    }

    .about-header .btn {
        position: static;
        /* Flow naturally */
        margin-top: 1rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        /* Center text */
    }

    .about-image {
        order: -1;
        /* Image first */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar .container>.btn-primary {
        margin-left: auto;
        margin-right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        height: fit-content;
    }

    .navbar .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        gap: 1rem;
        border-top: 1px solid #e2e8f0;
    }

    .navbar .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Mobile Dropdown Overrides */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* hidden until parent is clicked */
        flex-direction: column;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1rem;
        background: transparent;
        margin-top: 0.5rem;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
        /* we rely on .dropdown.active on mobile, so we ignore desktop hover styles */
    }

    /* Contact Page Mobile Refinements */
    .contact-page .hero-pod {
        margin: 1rem 1rem 0;
        border-radius: 24px;
    }

    .contact-page .navbar {
        padding: 1rem 0;
    }

    /* Make hamburger white on contact page */
    .contact-page .mobile-menu-toggle .bar {
        background-color: white;
    }

    /* Make the dropdown match dark theme on mobile */
    .contact-page .navbar .nav-links {
        background: var(--dark-navy);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-hero {
        padding: 1.5rem 0 8rem;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .contact-form-container {
        margin-top: -5rem;
        padding-bottom: 4rem;
    }

    .contact-form-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

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

    .form-group.full-width {
        grid-column: auto;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 0;
}

.why-us-section .container {
    background-color: #eff6ff;
    border-radius: 3rem;
    padding: 4rem 3rem;
    /* optional: nice shadow */
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.05);
}

.why-us-section .section-header h2 {
    color: var(--dark-navy);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

/* Create a bento-grid feel: Make first 2 cards span standard, maybe one larger if needed. 
   For 5 items: 
   Row 1: 3 items
   Row 2: 2 items (centered or stretched)
   Let's try a 6-column grid for flexibility or just use auto-fit.
   User asked for "blocks".
*/

/* 
   Layout Variation:
   Item 1: span 2 col ? 
   Let's keep it simple first: 3 cols.
   1 2 3
   4 5 (empty) -> 4 and 5 occupy 1.5 cols?
*/

.why-us-grid {
    grid-template-columns: repeat(6, 1fr);
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    grid-column: span 2;
    /* Default span 2 of 6 (so 3 items per row) */
}

/* First 3 items fit in row 1 (2+2+2 = 6) */
.why-card:nth-child(1),
.why-card:nth-child(2),
.why-card:nth-child(3) {
    grid-column: span 2;
}

/* Last 2 items share row 2 (3+3 = 6) */
.why-card:nth-child(4),
.why-card:nth-child(5) {
    grid-column: span 3;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.why-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card,
    .why-card:nth-child(n) {
        grid-column: span 1 !important;
    }

    /* 5th item spans full width if odd? */
    .why-card:nth-child(5) {
        grid-column: span 2 !important;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card,
    .why-card:nth-child(n) {
        grid-column: auto !important;
    }
}

/* Sign In Page */
/* Sign In Page */
.signin-container {
    display: flex;
    flex-direction: column;
    /* Stack logo and form vertically */
    /* justify-content: space-between; Removed to let auth-content handle centering */
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #eff6ff, #dbeafe);
    background-image: radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
    background-color: #f8fafc;
    padding: 2rem;
}

.auth-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.auth-content .logo {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.auth-content .logo .logo-icon {
    width: 40px;
    height: 40px;
}

.signin-form-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 700px;
    /* Increased max-width for side-by-side inputs */
}

.mb-8 {
    margin-bottom: 2rem;
}

.form-wrapper {
    max-width: 100%;
    /* Let it fill the wider container */
    width: 100%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.input-group input {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forgot-pass {
    color: var(--primary-blue);
    font-weight: 500;
}

.btn-block {
    width: 100%;
}

.btn-google {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-google:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.signup-prompt {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.signup-prompt a {
    color: var(--primary-blue);
    font-weight: 600;
}

.copyright {
    color: #94a3b8;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 2rem;
}

.signin-visual-section {
    background: #f1f5f9;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.signin-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.visual-content h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.visual-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Auth Page Footer */
.auth-page-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin-top: 2rem;
    padding: 0 1rem;
}

.auth-footer-left {
    justify-self: start;
}

.auth-footer-center {
    justify-self: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

.auth-footer-right {
    justify-self: end;
    display: flex;
    gap: 0.75rem;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    text-decoration: none;
    font-size: 1rem;
}

.logo-icon-sm {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue), #60a5fa);
    border-radius: 6px;
}

.social-link {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.social-link {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
    background: transparent;
    box-shadow: none;
}

.social-link:hover {
    color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: none;
}

@media (max-width: 600px) {
    .auth-page-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .auth-footer-left,
    .auth-footer-center,
    .auth-footer-right {
        justify-self: center;
    }
}


/* CTA Section */
/* CTA Section */
.cta-section {
    padding: 0;
    margin-top: 4rem;
    overflow: hidden;
    /* Ensure rounded corners clip content */
}

.cta-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 3rem 3rem 0 0;
    padding: 4rem 0 8rem 0;
    /* Increased bottom padding for footer overlap */
    width: 100%;
    position: relative;
    color: white;
    z-index: 1;
    overflow: hidden;
    /* Ensure gradient respects border-radius */
}

/* ... */

/* Footer Overhaul */
.footer {
    background: #f8fafc;
    padding: 4rem 0 0 0;
    /* Remove bottom padding, let bottom section handle it */
    border-radius: 3rem 3rem 0 0;
    margin-top: -4rem;
    /* Overlap the CTA */
    position: relative;
    z-index: 10;
    /* Ensure it sits on top */
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
    /* Ensure rounded corners work if child has bg */
}

/* Subtle background grain or noise could be added here */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 40%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 4rem;
    /* Explicit large gap */
}

/* ... */

.cta-content-left {
    flex: 1;
    /* Equal width */
    /* or flex-basis: 50% */
}

.cta-content-left h2 {
    color: white;
    font-size: 2.75rem;
    line-height: 1.3;
    padding-bottom: 0.1em;
    font-weight: 600;
}

.cta-content-right {
    flex: 1;
    /* Equal width */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    border-left: none;
}

.cta-content-right p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    /* Prevent buttons from shrinking */
    white-space: nowrap;
}

.btn-white {
    background: white;
    color: var(--dark-navy);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Overhaul */
.footer {
    background: #f8fafc;
    padding: 4rem 0 0 0;
    /* Remove bottom padding */
    border-radius: 3rem 3rem 0 0;
    margin-top: -4rem;
    /* Overlap the CTA */
    position: relative;
    z-index: 10;
    /* Ensure it sits on top */
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
    /* Clip content */
}

.footer-bottom-section {
    background: white;
    width: 100%;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 4rem;
    /* Space from links */
}



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

.footer-brand p {
    margin: 1.5rem 0 2rem 0;
    color: var(--text-gray);
    max-width: 300px;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 360px;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid #cbd5e1;
    outline: none;
    transition: border-color 0.2s;
}

.subscribe-form input:focus {
    border-color: var(--primary-blue);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--dark-navy);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    /* Removed in favor of disclaimer block, or keep for legacy if needed, but we replaced it in HTML */
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-disclaimer {
    border-top: none;
    padding-top: 0;
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: left;
    /* Usually disclaimers are justified or left */
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

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

@media (max-width: 900px) {

    .cta-card {
        padding: 3rem 0 6rem 0;
        /* Maintain bottom padding for footer overlap */
    }

    .cta-inner,
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .cta-inner {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .cta-content-left,
    .cta-content-right {
        max-width: 100%;
        flex: auto;
        /* Reset flex basis */
        width: 100%;
        padding: 0;
        /* Remove side padding */
    }

    .cta-content-right {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cta-content-right p {
        text-align: center;
    }

    .cta-content-left h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        justify-content: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .signin-visual-section {
        display: none;
    }

    .signin-form-section {
        padding: 2rem 1.5rem;
    }
}

/* Careers Page Styles */
.careers-hero .hero-content p {
    max-width: 100%;
}

.open-positions-section {
    padding: 6rem 0;
    background: #fff;
}

.positions-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.positions-header-top h2 {
    font-size: 3rem;
    color: var(--dark-navy);
}

.filter-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: var(--text-gray);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    background: #f8fafc;
    /* Matches site light background */
    border: 1px solid #e2e8f0;
    padding: 2rem 3rem;
    /* Reduced vertical padding */
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    /* Significant gap to push things left/right clusters */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    position: relative;
    /* Added for stretched link */
}

.job-card.hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    opacity: 0;
    border-color: transparent;
    pointer-events: none;
}

.job-card:hover {
    transform: translateY(-5px);
    background: #f0f7ff;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
    /* Blue tinted shadow */
}

.job-title-group {
    flex: 1;
}

.job-title-group h3 {
    font-size: 1.75rem;
    /* Slightly smaller heading */
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.job-title-group p {
    color: var(--text-gray);
    margin-bottom: 0;
    max-width: 600px;
    font-size: 0.95rem;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    /* Inline with arrow */
}

.job-tag {
    padding: 0.25rem 0.85rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.7rem;
    /* Even smaller */
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.meta-detail {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    /* Smaller */
    font-weight: 500;
}

.meta-detail svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.job-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
}

.job-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .positions-header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 2rem;
    }

    .job-meta {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

/* Centered Careers Hero */
.careers-hero-centered {
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero .hero-content h1 {
    font-size: 2.5rem;
    /* Reduced font size */
    margin-bottom: 1.5rem;
}

.careers-intro-text {
    font-size: 1rem;
    /* Reduced font size */
    line-height: 1.6;
    color: var(--text-gray);
}

.careers-hero .hero-btns {
    justify-content: center;
}

/* Team Testimonials */
.team-testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.75rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.section-header-centered p {
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-row {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    border-radius: 2.5rem;
    overflow: hidden;
    height: 480px;
    /* Consistent height for grid items */
}

.testimonial-card.image-card {
    flex: 0 0 480px;
    /* Square based on height */
    background: #f0f7ff;
    /* Brand consistent light blue */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.testimonial-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps integrate the avatar if it has a white bg */
}

.testimonial-card.text-card {
    flex: 1;
    /* Rectangular width */
    background: #f8fafc;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.testimonial-card h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.testimonial-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .testimonial-card {
        height: 400px;
    }

    .testimonial-card.image-card {
        flex-basis: 400px;
    }

    .testimonial-card.text-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-row {
        flex-direction: column;
    }

    .testimonial-card {
        height: auto;
        min-height: 350px;
        flex: none;
        width: 100%;
    }

    /* Maintain square-ish proportion on mobile */
    .testimonial-card.image-card {
        aspect-ratio: 1 / 1;
    }

    /* Staggered look on mobile: image always first in its logical pair */
    .testimonials-row:nth-child(2) {
        flex-direction: column-reverse;
        /* Put image on top for the second row too */
    }
}

/* Job Details Page */
.job-details-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    text-align: center;
}

.job-details-hero .container {
    max-width: 900px;
}

.job-title {
    font-size: 3.5rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.job-description-short {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.job-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.job-meta-hero .job-tag {
    padding: 0.25rem 0.85rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.job-meta-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 0.95rem;
}

.job-meta-hero .meta-item svg {
    color: var(--primary-blue);
}

.job-details-content {
    padding: 60px 0 100px;
    background: #ffffff;
}

.job-details-content .job-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
}

.job-details-content .job-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.job-section {
    margin-bottom: 0;
}

.job-section h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin: 0 0 1.5rem;
}

.job-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-section ul {
    list-style: none;
    padding: 0;
}

.job-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.job-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.job-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.apply-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem;
    border-radius: 2rem;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apply-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.apply-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.apply-card .btn {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .job-details-content .job-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .job-details-content .job-main {
        gap: 2rem;
    }

    .job-sidebar {
        position: static;
    }

    .job-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .job-details-hero {
        padding: 100px 0 60px;
    }

    .job-details-content .job-main {
        grid-template-columns: 1fr;
    }

    .job-title {
        font-size: 2.25rem;
    }

    .apply-card {
        padding: 2rem;
    }
}

/* ===================================
   Strategic Fund Page Styles
   =================================== */

/* Fund Hero Section */
.fund-hero-section {
    margin: 1rem 4rem 0;
    border-radius: 40px;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.fund-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fund-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fund-hero-content .sub-heading {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.fund-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.15;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fund-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.fund-hero-text .highlight-text {
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 1.15rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    margin-top: 2rem;
}

.fund-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fund-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.fund-hero-image img:hover {
    transform: scale(1.02);
}

/* Staking Cards Section - Horizontal Accordion */
.staking-cards-section {
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.staking-accordion {
    display: flex;
    height: 600px;
    width: 100%;
}

.accordion-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Remove width expansion on hover */
.accordion-card:hover {
    flex: 1;
}

.accordion-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* First card - Staking Process - Keep same color always */
.accordion-card:nth-child(1) .accordion-card-inner {
    background: linear-gradient(135deg, rgba(51, 119, 227, 0.05) 0%, rgba(3, 95, 199, 0.05) 100%);
}

/* Second card - Staking Advantages - Keep same color always */
.accordion-card:nth-child(2) .accordion-card-inner {
    background: linear-gradient(135deg, rgba(42, 119, 243, 0.05) 0%, rgba(147, 197, 253, 0.05) 100%);
}

/* Third card - Participation Standards - Keep same color always */
.accordion-card:nth-child(3) .accordion-card-inner {
    background: linear-gradient(135deg, rgba(51, 119, 227, 0.05) 0%, rgba(3, 95, 199, 0.05) 100%);
}

.accordion-header {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

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

/* Hover State - Only reveal content, no color or size change */
.accordion-card:hover .accordion-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.accordion-card:hover .accordion-subtitle {
    margin-bottom: 1.5rem;
}

.accordion-card:hover .accordion-content {
    max-height: 400px;
    opacity: 1;
    margin-top: 1.5rem;
}

/* Responsive Design for Fund Page */
@media (max-width: 1024px) {
    .fund-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fund-hero-content h1 {
        font-size: 2.75rem;
    }

    .staking-accordion {
        flex-direction: column;
        height: auto;
    }

    .accordion-card {
        flex: none;
        min-height: 120px;
    }

    .accordion-card:hover {
        flex: none;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .fund-hero-section {
        margin: 1rem 1rem 0;
        border-radius: 24px;
        padding: 6rem 0 4rem;
    }

    .fund-hero-content h1 {
        font-size: 2.25rem;
    }

    .fund-hero-text p {
        font-size: 1rem;
    }

    .accordion-card-inner {
        padding: 2rem;
    }

    .accordion-header h3 {
        font-size: 1.5rem;
    }

    .accordion-card:hover .accordion-header h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Digital Asset Offerings Page Styles
   =================================== */

/* Hero Section */
.digital-assets-hero {
    margin: 1rem 4rem 0;
    border-radius: 40px;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.digital-assets-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center .sub-heading {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: #ffffff;
}

.content-section.bg-light {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

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

/* Feature List */
.feature-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-blue);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Image Placeholder */
.content-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.5);
}

.image-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    opacity: 0.6;
}

/* Responsive Design for Digital Assets Page */
@media (max-width: 1024px) {
    .hero-content-center h1 {
        font-size: 2.75rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .content-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .digital-assets-hero {
        margin: 1rem 1rem 0;
        border-radius: 24px;
        padding: 6rem 0 4rem;
    }

    .hero-content-center h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .content-text h2 {
        font-size: 1.75rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .image-placeholder {
        height: 300px;
    }

    .feature-list {
        gap: 1.5rem;
    }
}

/* Financial Professionals Page */
.professionals-hero {
    margin: 1rem 4rem 0;
    border-radius: 40px;
    background: var(--dark-navy);
    padding: 8rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.professionals-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.professionals-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
    color: white;
}

.hero-right {
    max-width: 500px;
    padding-bottom: 0.5rem;
}

.hero-right p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.professionals-content {
    padding: 8rem 0;
    background: #ffffff;
}

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

.pro-card {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s ease;
}

.pro-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

.pro-card-icon {
    color: var(--dark-navy);
    background: #f8fafc;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.pro-card-content h3 {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
}

.pro-card-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Professionals Page */
@media (max-width: 1024px) {
    .professionals-hero {
        padding: 6rem 0 4rem;
    }

    .professionals-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-right {
        max-width: 100%;
        padding-bottom: 0;
    }

    .professionals-content {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .professionals-hero {
        margin: 1rem 1rem 0;
        border-radius: 24px;
        padding: 4rem 0 3rem;
    }

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

    .pro-card {
        padding: 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .pro-card-content h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Leadership Page Styles
   =================================== */

.leadership-hero {
    min-height: 30vh;
}


.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem 4rem;
    padding: 2.5rem 0;
}

.team-section {
    padding-top: 0;
    /* removed negative padding, section is less tall */
    padding-bottom: 0rem;
    /* keep space after cards for footer */
}

.team-card {
    margin-top: 0rem;
    /* slightly bring cards up */
    flex: 0 0 calc(28% - 1.7rem);
    /* narrower cards */
    max-width: calc(28% - 1.7rem);
    text-align: left;
    transition: transform 0.3s ease;
    /* optional: smooth hover */
}

@media (max-width: 1024px) {
    .team-card {
        flex: 0 0 calc(45% - 1.5rem);
        /* adjust for tablet */
        max-width: calc(45% - 1.5rem);
    }
}

@media (max-width: 640px) {
    .team-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .leadership-grid {
        padding: 4rem 0;
    }
}

.team-image-wrapper {
    position: relative;
    border-radius: 15px;
    /* slightly smaller corners */
    overflow: hidden;
    aspect-ratio: 0.9 / 1;
    /* slightly shorter card height */
    background: #f1f5f9;
    margin-bottom: 1.5rem;
    /* less space below image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 1.5rem;
    /* smaller names */
    color: var(--dark-navy);
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.team-designation {
    color: var(--text-gray);
    font-size: 1rem;
    /* smaller designation */
    font-weight: 500;
    margin: 0;
}

/* Adjustments for 5-member layout (3 + 2) */
@media (min-width: 1025px) {
    /* The flex-center will naturally wrap the 4th and 5th items to the middle */
}

/* ===================================
   News Page Layout
   =================================== */

.news-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem 0;
}

@media (max-width: 992px) {
    .news-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }
}

.news-category {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    border-right: 1px solid #e2e8f0;
}

.news-category:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 992px) {
    .news-category:nth-child(even) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .news-category {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .news-category:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.news-category h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.news-item-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    display: flex;
    flex-direction: column;
}

.news-item-title {
    color: #1e73be;
    /* Classic link blue matching the image */
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.news-item-title:hover {
    text-decoration: underline;
    color: #1a5c96;
}

.news-item-meta {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.news-more-link {
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
    color: #1e73be;
    text-decoration: none;
}

.news-more-link:hover {
    text-decoration: underline;
    color: #1a5c96;
}

.news-row-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 3rem 0;
    width: 100%;
}