:root {
    --midnight-blue: #020c1b;
    --navy-blue: #0a192f;
    --light-navy: #112240;
    --bright-gold: #ffd701; 
    --light-slate: #ccd6f6;
    --slate: #8892b0;
    --white: #ffffff;
    --font-sans: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
::selection {
    background-color: var(--bright-gold);
    color: var(--midnight-blue);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
body {
    background-color: var(--midnight-blue);
    color: var(--slate);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}
h1, h2, h3, h4 {
    color: var(--light-slate);
    font-weight: 600;
}
.reveal-on-scroll, .stagger-reveal > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.reveal-on-scroll.is-visible, .stagger-reveal.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.stagger-reveal.is-visible > *:nth-child(1) { transition-delay: 150ms; }
.stagger-reveal.is-visible > *:nth-child(2) { transition-delay: 250ms; }
.stagger-reveal.is-visible > *:nth-child(3) { transition-delay: 350ms; }
.stagger-reveal.is-visible > *:nth-child(4) { transition-delay: 450ms; }
.stagger-reveal.is-visible > *:nth-child(5) { transition-delay: 550ms; }
@media (max-width: 1024px) {
    .reveal-on-scroll, .stagger-reveal > *, .portfolio-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    background-color: transparent;
    z-index: 100;
    transition: var(--transition-smooth);
}
.header.scrolled {
    background-color: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px;
    transition: var(--transition-smooth);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}
.nav-links a {
    color: var(--light-slate);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 5px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--bright-gold);
    transition: var(--transition-smooth);
}
@media (hover: hover) and (pointer: fine) {
    .logo:hover img {
        transform: scale(1.05) rotate(-5deg);
    }
    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%;
    }
    .nav-links a:hover, .nav-links a.active {
        color: var(--bright-gold);
    }
    .btn:hover::before {
        width: 100%;
    }
    .btn-primary:hover {
        border-color: var(--bright-gold);
        color: var(--midnight-blue)
    }
    .btn-secondary:hover {
        color: var(--midnight-blue); 
    }
    .btn-tertiary:hover {
        border-color: var(--bright-gold);
        color: var(--midnight-blue);
    }
    .partner-card:hover {
        transform: translateY(-5px);
        border-color: var(--bright-gold);
    }
    .process-step:hover {
        border-color: var(--bright-gold);
        transform: translateY(-8px);
        box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
    }
    .esg-pillar:hover {
        transform: translateY(-10px);
        border-color: var(--bright-gold);
    }
    .filter-btn:hover {
        color: var(--bright-gold);
        background-color: #1d335a;
    }
    .portfolio-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--bright-gold);
        box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
    }
    .portfolio-card:hover .card-link {
        color: var(--bright-gold);
        transform: translateX(5px);
    }
    .footer-links a:hover {
        color: var(--bright-gold);
    }
    .faq-item:hover {
        border-color: var(--bright-gold);
    }
}
@media (hover: none) and (pointer: coarse) {
    .partner-card:active, .process-step:active, .esg-pillar:active, .portfolio-card:active, .faq-item:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    .filter-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--bright-gold);
    transition: var(--transition-smooth);
    z-index: -1;
}
.btn-primary {
    border-color: var(--slate);
    color: var(--slate);
}
.btn-secondary {
    border-color: var(--bright-gold);
    background-color: transparent;
    color: var(--bright-gold);
}
.btn-tertiary {
    border-color: var(--slate);
    color: var(--slate);
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.25;
    font-weight: 700;
    max-width: 1000px;
}
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    max-width: 700px;
    margin-bottom: 40px;
    color: var(--light-slate);
}
.hero-video-wrapper {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #1d335a;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.philosophy { padding: 120px 0; }
.philosophy .container {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 80px;
    align-items: center;
}
.section-tag {
    color: var(--bright-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}
.philosophy-text h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 25px;
}
.philosophy-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.philosophy-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.midas-hand-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 1, 0.2));
}
.founders-section {
    padding: 100px 0;
    background-color: var(--navy-blue);
}
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.founder-card {
    background-color: var(--light-navy);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #1d335a;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}
@media (hover: hover) and (pointer: fine) {
    .founder-card:hover {
        transform: translateY(-8px);
        border-color: var(--bright-gold);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
}
.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bright-gold);
    margin-bottom: 25px;
    background-color: var(--midnight-blue);
}
.founder-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.founder-role {
    color: var(--bright-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.founder-bio {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 450px;
}
.founder-social {
    margin-top: auto;
}
.social-link {
    color: var(--slate);
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 8px;
    border: 1px solid rgba(136, 146, 176, 0.2);
    border-radius: 50%;
}
.social-link:hover {
    color: var(--bright-gold);
    border-color: var(--bright-gold);
    transform: translateY(-3px);
}
.reality-section {
    padding: 120px 0;
    background-color: #050f1e; 
    text-align: center;
    border-top: 1px solid #1d335a;
    border-bottom: 1px solid #1d335a;
}
.reality-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 40px;
}
.reality-content {
    max-width: 800px;
    margin: 0 auto;
}
.reality-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--slate);
    line-height: 1.8;
}
.partners-section {
    background-color: var(--navy-blue);
    padding: 120px 0;
}
.partners-section h2 { 
    font-size: clamp(2.2rem, 5vw, 3rem); 
    margin-bottom: 10px; 
    text-align: center; 
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.partner-card {
    background-color: var(--light-navy);
    border-radius: 8px;
    border: 1px solid #1d335a;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.partner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
    padding-bottom: 15px;
}
.partner-logo {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    margin: 0 auto;
}
.partner-logo-text {
    color: var(--midnight-blue);
    font-weight: 700;
    font-size: 0.7rem;
    text-align: center;
}
.partner-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--white);
}
.partner-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partner-highlight {
    color: var(--bright-gold);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.partner-body p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--light-slate);
}
.partner-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
    padding: 0;
}
.partner-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--slate);
}
.partner-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bright-gold);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.partner-link i {
    width: 16px;
    height: 16px;
}
.partner-link:hover {
    color: var(--white);
}
.featured-partner {
    border: 1px solid var(--bright-gold);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, var(--light-navy) 100%);
}
.process-section { 
    padding: 120px 0; 
    text-align: center; 
    background-color: var(--midnight-blue);
}
.process-section h2 { 
    font-size: clamp(2.2rem, 5vw, 3rem); 
    margin-bottom: 15px; 
}
.section-subtitle { max-width: 650px; margin: 0 auto 60px; font-size: 1.1rem; }
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.process-step {
    background-color: var(--light-navy);
    border-radius: 8px;
    padding: 35px 25px;
    border-top: 4px solid #1d335a;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--navy-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--bright-gold);
    border: 1px solid #1d335a;
}
.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--light-slate);
}
.process-content p {
    font-size: 0.95rem;
    color: var(--slate);
}
.esg-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--midnight-blue);
}
.esg-section .section-subtitle {
    max-width: 700px;
}
.esg-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}
.esg-pillar {
    background-color: var(--navy-blue);
    padding: 40px 35px;
    border-radius: 8px;
    border-bottom: 4px solid #1d335a;
    transition: var(--transition-smooth);
}
.esg-icon {
    margin-bottom: 20px;
}
.esg-icon i {
    width: 38px;
    height: 38px;
    color: var(--bright-gold);
}
.esg-pillar h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light-slate);
}
.pricing-section {
    padding: 100px 0 140px;
    background-color: var(--midnight-blue);
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 40px;
    align-items: center;
}
.pricing-card {
    background-color: var(--light-navy);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #1d335a;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
    text-align: center;
    align-items: center;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.4);
}
.pricing-card h3 {
    color: var(--bright-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--font-sans);
}
.pricing-price span {
    font-size: 1rem;
    color: var(--slate);
    font-weight: 400;
}
.pricing-desc {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 25px;
    min-height: 50px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
    padding-bottom: 20px;
}
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
    width: 100%;
}
.pricing-features li {
    margin-bottom: 12px;
    color: var(--light-slate);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.pricing-features li i {
    color: var(--bright-gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}
.user-limit {
    font-size: 0.8rem;
    color: var(--slate);
    text-align: center;
    margin-top: 15px;
    opacity: 0.7;
    font-style: italic;
}
.btn-plan {
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--bright-gold);
    color: var(--bright-gold);
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    background: transparent;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}
.btn-plan:hover {
    background-color: var(--bright-gold);
    color: var(--midnight-blue);
}
.pricing-card.featured {
    background: linear-gradient(180deg, rgba(29, 51, 90, 0.3) 0%, var(--light-navy) 100%);
    border-top: 4px solid var(--bright-gold);
}
.pricing-card.scale-highlight {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, var(--light-navy) 100%);
    border: 2px solid var(--bright-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}
.pricing-card.scale-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bright-gold);
    color: var(--midnight-blue);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.pricing-card.scale-highlight .btn-plan {
    background-color: var(--bright-gold);
    color: var(--midnight-blue);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}
.pricing-card.scale-highlight .btn-plan:hover {
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
.equity-container {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}
.equity-card {
    background: linear-gradient(90deg, #0a192f 0%, #112240 100%);
    border: 1px solid var(--slate);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}
.equity-card:hover {
    border-color: var(--bright-gold);
}
.equity-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
}
.equity-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
}
.equity-tag {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--bright-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.equity-desc {
    color: var(--slate);
    font-size: 1rem;
    margin: 0;
    max-width: 800px;
    text-align: center;
}
.btn-equity {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.btn-equity:hover {
    border-color: var(--bright-gold);
    color: var(--bright-gold);
}
.community-section {
    padding: 120px 0;
    background-color: var(--midnight-blue);
    text-align: center;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}
.news-card {
    background-color: var(--light-navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1d335a;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--bright-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.news-image-container {
    width: 100%;
    height: 220px;
    background-color: #020c1b;
    position: relative;
    overflow: hidden;
}
.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}
.news-card:hover .news-image-container img {
    transform: scale(1.05);
    opacity: 1;
}
.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}
.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}
.news-tag {
    color: var(--bright-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}
.news-date {
    color: var(--slate);
    font-size: 0.8rem;
}
.news-title {
    color: var(--light-slate);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}
.news-excerpt {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}
.news-link {
    color: var(--bright-gold);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.news-link:hover {
    gap: 10px;
}
.platform-section {
    padding: 120px 0;
    background-color: var(--navy-blue);
}
.platform-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.platform-text ul {
    list-style: none;
    margin-top: 25px;
}
.platform-text li {
    display: flex;
    align-items: center;
    gap: 12px; 
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.platform-text li i {
    color: var(--bright-gold);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.platform-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.portfolio { 
    text-align: center; 
    padding: 120px 0; 
    background-color: var(--midnight-blue);
}
.portfolio h2 { 
    font-size: clamp(2.2rem, 5vw, 3rem); 
    margin-bottom: 50px; 
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}
.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background-color: var(--light-navy);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #1d335a;
}
.filter-btn {
    background: transparent;
    border: none;
    color: var(--slate);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.filter-btn.active {
    background-color: var(--bright-gold);
    color: var(--midnight-blue);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 215, 1, 0.3);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.portfolio-card {
    background-color: var(--light-navy);
    border: 1px solid #1d335a;
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--slate);
}
.portfolio-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light-slate);
}
.card-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1d335a;
    padding-top: 20px;
    margin-top: auto;
}
.card-tag {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--bright-gold);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}
.card-link {
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-block;
}
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--navy-blue);
}
.final-cta h2 { 
    font-size: clamp(2.2rem, 5vw, 2.8rem); 
    margin-bottom: 20px; max-width: 750px; 
    margin-left: auto; margin-right: auto; 
}
.final-cta p { max-width: 600px; margin: 0 auto 40px; font-size: 1.1rem; }
.final-cta .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer {
    background-color: #010814;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 0.95rem;
    color: var(--slate);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-cnpj {
    font-family: monospace;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    cursor: pointer;
    padding: 10px;
}
.mobile-menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: var(--light-slate);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}
.faq-section {
    padding: 120px 0;
    background-color: var(--midnight-blue);
}
.faq-section h2 { 
    font-size: clamp(2.2rem, 5vw, 3rem); 
    margin-bottom: 10px; 
    text-align: center; 
}
.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background-color: var(--light-navy);
    border: 1px solid #1d335a;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    color: var(--bright-gold);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
details[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 25px 25px;
    color: var(--slate);
    line-height: 1.6;
    border-top: 1px solid transparent;
}
details[open] .faq-answer {
    border-top: 1px solid rgba(136, 146, 176, 0.1);
    padding-top: 15px;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
    .philosophy .container,
    .platform-section .container {
        gap: 40px;
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        transform: none;
    }
    .pricing-card.scale-highlight {
        transform: none;
    }
    .pricing-card.scale-highlight:hover {
        transform: translateY(-8px);
    }
}
@media (max-width: 900px) {
    .philosophy .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .philosophy-icon-container { order: -1; margin-bottom: 30px; }
    .platform-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .platform-image { order: -1; margin-bottom: 40px; }
    
    .platform-text ul {
        display: inline-block; 
        text-align: left;   
        width: auto;         
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .header-cta { display: none; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(75vw, 320px);
        background-color: var(--light-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a { font-size: 1.2rem; }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .mobile-menu-toggle.active .line2 {
        opacity: 0;
    }
    .mobile-menu-toggle.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    section {
        padding: 90px 0;
    }
    .partners-grid, .esg-pillars, .process-timeline {
        grid-template-columns: 1fr;
    }
    .portfolio-filters {
        gap: 20px;
    }
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .filter-btn {
        padding: 12px 20px;
    }
    .footer-content {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        text-align: center;
    }
    .footer-copyright { order: 3; }
    .footer-links { order: 1; justify-content: center; }
    .footer-cnpj { order: 2; }
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founders-grid {
        grid-template-columns: 1fr;
    }
    .equity-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    .equity-header {
        justify-content: center;
    }
    .btn-equity {
        width: 100%;
        display: block;
    }
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
    a, button, .logo, [data-filter-group], summary {
        cursor: none; 
    }
    .custom-cursor {
        width: 20px;
        height: 20px;
        border: 2px solid var(--bright-gold);
        border-radius: 50%;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10000;
        transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, transform 0.1s linear;
    }
    .custom-cursor.hover {
        width: 60px;
        height: 60px;
        background-color: rgba(255, 215, 0, 0.1);
        border-color: transparent;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .partner-card, .process-step, .esg-pillar {
        padding: 25px 20px;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 280px;
        margin: 0 auto;
    }
}
.portfolio-card {
    padding-top: 20px; 
}
.card-logo-container {
    width: 100%;
    max-width: 120px;
    height: 60px;
    margin-bottom: 20px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.card-logo-container img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.4));
}
.portfolio-card .card-content {
    margin-top: 0;
}