
.about-header {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: center;
    color: var(--text);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.about {
    padding: 60px 20px 80px;
    background: transparent;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,195,150,0.25) 0%, rgba(46,195,150,0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    box-shadow: 0 0 100px rgba(46,195,150,0.25), 0 0 200px rgba(46,195,150,0.12);
    z-index: 0;
    animation: float-blob 18s ease-in-out infinite;
}

.about::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(96,149,190,0.25) 0%, rgba(96,149,190,0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    box-shadow: 0 0 100px rgba(96,149,190,0.25), 0 0 200px rgba(96,149,190,0.12);
    z-index: 0;
    animation: float-blob-reverse 22s ease-in-out infinite;
}

.about-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 40px auto;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-description {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4);
    transition: transform .18s ease, box-shadow .18s ease;
}

.about-description:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(2,6,23,0.5);
}

.about-description h2 {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--text);
}

.about-description h2 .highlight {
    background: linear-gradient(135deg, rgba(46,195,150,0.9), rgba(96,149,190,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-line .circle {
    min-width: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin-top: 8px;
}

.about-line p {
    font-size: 15px;
    line-height: 1.6;
    color: #d7e3e7;
    margin: 0;
}

.cta {
    margin-top: 12px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(96,149,190,0.85));
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(46,195,150,0.2);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    background: linear-gradient(90deg, rgba(46,195,150,1), rgba(96,149,190,0.95));
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(46,195,150,0.25);
}

.cta-btn i {
    font-size: 18px;
    margin: 0;
}

.video-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.video-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 16px 0 4px;
    color: var(--text);
}

.video-content h2.highlight {
    background: linear-gradient(135deg, rgba(46,195,150,0.9), rgba(96,149,190,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-content p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.video-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
}

.video-placeholder h2 {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
}

.video-placeholder p {
    text-align: center;
}

.video-placeholder a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(46,195,150,0.3);
    transition: all .2s ease;
}

.video-placeholder a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.media-player {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4);
}

.venue-info {
    background: transparent;
    padding: 80px 20px;
    position: relative;
}

.venue-head {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.venue-head h2 {
    font-size: 2rem;
    margin: 0 0 16px;
    font-weight: 700;
    color: var(--text);
}

.venue-head h3 {
    font-size: 17px;
    color: var(--muted);
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.venue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.venue-card {
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(2,6,23,0.4);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
}

.venue-card::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 20px;
    width: 46px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), #9fb6bd);
}

.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(2,6,23,0.5);
    border-color: rgba(46,195,150,0.2);
}

.venue-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0 16px;
    color: var(--text);
}

.venue-card .about-line {
    margin-top: 8px;
}

.venue-card .about-line p {
    font-size: 14px;
    line-height: 1.6;
    color: #d7e3e7;
}

.venue-foot {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.venue-foot p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

iframe {
    height: 1300px;
}

.zoho-form {
    height: 1250px;
    width: 100%;
}

/* PISCES FAQ Styles */
.pisces-faqs {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0px auto;
    margin-bottom: 100px;
}

/* PISCES FAQ accordion (match investors FAQ styling) */
#faq.pisces-faqs {
    background: transparent;
    padding: 80px 20px;
}

#faq .faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

#faq .faqs-header {
    text-align: center;
    margin-bottom: 48px;
}

#faq .section-bubble {
    width: fit-content;
    border: 1px solid rgba(46,195,150,0.15);
    background: rgba(46,195,150,0.04);
    border-radius: 20px;
    margin: 0 auto 16px;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: rgba(46,195,150,0.9);
    text-transform: uppercase;
}

#faq .section-header {
    font-size: 2rem;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 700;
}

#faq .section-subtext {
    color: var(--muted);
    font-size: 15px;
    margin: 0;
}

#faq .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#faq .faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
}

#faq .faq-item:hover {
    border-color: rgba(46,195,150,0.15);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

#faq .faq-item.active {
    border-color: rgba(46,195,150,0.3);
    background: linear-gradient(180deg, rgba(46,195,150,0.04), rgba(46,195,150,0.01));
    box-shadow: 0 4px 20px rgba(46,195,150,0.1);
}

#faq .faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all .2s ease;
    position: relative;
}

#faq .faq-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    transition: all .3s ease;
}

#faq .faq-item.active .faq-toggle::before {
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

#faq .faq-toggle:hover {
    background: rgba(255,255,255,0.02);
}

#faq .faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    padding-right: 20px;
    transition: color .2s ease;
}

#faq .faq-item.active .faq-question {
    color: rgba(46,195,150,0.95);
}

#faq .faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--muted);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
}

#faq .faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
    background: rgba(46,195,150,0.1);
}

#faq .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}

#faq .faq-content > * {
    padding: 0 24px 20px 24px;
}

#faq .faq-answer {
    font-size: 14px;
    color: #d7e3e7;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

#faq .faq-answer:last-child {
    margin-bottom: 0;
}

#faq .faq-answer strong {
    color: var(--text);
    font-weight: 700;
}

.trading {
    background: transparent;
    padding: 80px 20px;
    position: relative;
}

.trading h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px;
    color: var(--text);
}

.trading h2 .highlight {
    background: linear-gradient(135deg, rgba(46,195,150,0.9), rgba(96,149,190,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trading-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.trading-card {
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(2,6,23,0.4);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trading-card::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 20px;
    width: 46px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), #9fb6bd);
}

.trading-card:nth-child(1) {
    border-color: rgba(46,195,150,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(46,195,150,0.2);
}

.trading-card:nth-child(1):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(46,195,150,0.3);
}

.trading-card:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(46,195,150,0.6));
}

.trading-card:nth-child(2) {
    border-color: rgba(96,149,190,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(96,149,190,0.2);
}

.trading-card:nth-child(2):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(96,149,190,0.3);
}

.trading-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(96,149,190,0.9), rgba(96,149,190,0.6));
}

.trading-card:nth-child(3) {
    border-color: rgba(147,112,219,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(147,112,219,0.2);
}

.trading-card:nth-child(3):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(147,112,219,0.3);
}

.trading-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(147,112,219,0.9), rgba(147,112,219,0.6));
}

.trading-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(2,6,23,0.5);
}

.trading-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0 16px;
    color: var(--text);
}

.trading-card h3.highlight {
    background: linear-gradient(135deg, rgba(46,195,150,0.9), rgba(96,149,190,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trading-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 4px 0;
}

.trading-line .circle {
    min-width: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin-top: 8px;
}

.trading-line p {
    font-size: 14px;
    line-height: 1.6;
    color: #d7e3e7;
    margin: 0;
}

.trading-line p strong {
    color: var(--text);
    font-weight: 700;
}


/* Responsive Design */
@media (max-width: 920px) {
    .about-header {
        font-size: 2rem;
        margin: 40px auto 0;
    }

    .about {
        padding: 40px 20px 60px;
    }

    .about-container {
        flex-direction: column;
        gap: 24px;
        margin: 20px auto;
    }

    .about-description {
        padding: 24px;
    }

    .video-content {
        margin: 0;
    }

    .media-player {
        max-height: 300px;
    }

    .venue-info {
        padding: 60px 20px;
    }

    .venue-head {
        margin-bottom: 40px;
    }

    .venue-head h2 {
        font-size: 1.75rem;
    }

    .venue-cards {
        gap: 20px;
    }

    .venue-card {
        padding: 24px;
    }

    .venue-foot {
        padding: 0 20px;
        margin-top: 20px;
    }

    .trading {
        padding: 60px 20px;
    }

    .trading h2 {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .trading-cards {
        gap: 20px;
    }

    .trading-card {
        padding: 24px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes float-blob-reverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 30px) scale(1.1);
    }
    66% {
        transform: translate(20px, -20px) scale(0.9);
    }
}

@keyframes morph-shape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* FAQ Styles - Keep existing */

@media (max-width: 920px) {
    #faq.pisces-faqs {
    padding: 60px 20px;
}
    #faq .faqs-header {
    margin-bottom: 32px;
}
    #faq .faqs-container {
    max-width: 100%;
}
    #faq .faq-accordion {
    gap: 10px;
}
    #faq .faq-toggle {
    padding: 16px 18px;
}
    #faq .faq-question {
    font-size: 15px;
}
    #faq .faq-icon {
        font-size: 24px;
        min-width: 28px;
        height: 28px;
    }
    #faq .faq-content > * {
        padding: 0 18px 16px 18px;
    }
}
