.hero-section {
    padding: 0;
    background: 
        linear-gradient(to bottom, transparent 0%, transparent 100%),
        radial-gradient(circle at 1px 1px, rgba(96,149,190,0.15) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96,149,190,0.28) 0%, rgba(96,149,190,0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    box-shadow: 0 0 100px rgba(96,149,190,0.3), 0 0 200px rgba(96,149,190,0.15);
    z-index: 0;
    animation: float-blob 18s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 100px;
    z-index: 1;
}

.hero {
    z-index: 2;
    max-width: 800px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(96,149,190,0.35), rgba(46,195,150,0.28));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    animation: morph-shape 8s ease-in-out infinite;
    z-index: -1;
}

.hero-image {
    display: none;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 800;
    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;
}
.hero h2 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.3px;
}
.hero p {
    font-size: 17px;
    max-width: 680px;
    color: #d7e3e7;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    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;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(2,6,23,0.18), 0 0 40px rgba(96,149,190,0.15);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.hero-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;
}

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

.hero-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(2,6,23,0.22), 0 0 50px rgba(96,149,190,0.25);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
}

.benefit-card {
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 4px 16px rgba(2,6,23,0.3);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2,6,23,0.4);
    border-color: rgba(46,195,150,0.2);
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
}

.benefit-text {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}


.section-nav {
    background-color: transparent;
    padding: 30px 20px;
    position: relative;
    border-top: 1px solid rgba(96, 149, 190, 0.2);
}
.section-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.section-nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #b8c8d0;
    text-decoration: none;
    border-radius: 8px;
    transition: all .2s ease;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}
.section-nav-link:hover {
    color: #ffffff;
    background: rgba(46,195,150,0.12);
    border-color: rgba(46,195,150,0.3);
}

.how-it-works {
    background: transparent;
    padding: 36px 20px;
}
.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.how-it-works-header {
    text-align: center;
    margin-bottom: 6px;
}
.section-header {
    font-size: 2rem;
    margin: 0;
    color: var(--text);
    text-align: center;
    font-weight: 700;
}
.section-subtext {
    color: var(--muted);
    max-width: 900px;
    margin: 6px auto 0;
    font-size: 15px;
    text-align: center;
}

.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: 30px auto;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    box-shadow: none;
    color: rgba(46,195,150,0.9);
    text-transform: uppercase;
}

.hw-enum{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--panel);
    letter-spacing: 1.2px;
    margin: 10px 0px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 4px;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;
}

.step {
    position: relative;
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 8px 28px rgba(2,6,23,0.4);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.step:nth-child(1),
.step:nth-child(2),
.step:nth-child(3) {
    grid-column: span 2;
}

.step:nth-child(4) {
    grid-column: 2 / 4;
}

.step:nth-child(5) {
    grid-column: 4 / 6;
}

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

.step: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);
}
.step:nth-child(1):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(46,195,150,0.3);
}
.step:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(46,195,150,0.6));
}

.step: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);
}
.step:nth-child(2):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(96,149,190,0.3);
}
.step:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(96,149,190,0.9), rgba(96,149,190,0.6));
}

.step: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);
}
.step:nth-child(3):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(147,112,219,0.3);
}
.step:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(147,112,219,0.9), rgba(147,112,219,0.6));
}

.step:nth-child(4) {
    border-color: rgba(255,159,64,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(255,159,64,0.2);
}
.step:nth-child(4):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(255,159,64,0.3);
}
.step:nth-child(4)::before {
    background: linear-gradient(90deg, rgba(255,159,64,0.9), rgba(255,159,64,0.6));
}

.step:nth-child(5) {
    border-color: rgba(255,99,132,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(255,99,132,0.2);
}
.step:nth-child(5):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(255,99,132,0.3);
}
.step:nth-child(5)::before {
    background: linear-gradient(90deg, rgba(255,99,132,0.9), rgba(255,99,132,0.6));
}

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

.step h3 {
    font-size: 18px;
    margin: 10px 0 6px;
    color: var(--text);
    font-weight: 800;
}
.step h4 {
    font-size: 13px;
    margin: 0 0 10px;
    color: var(--muted);
    font-weight: 600;
}
.step p {
    font-size: 14px;
    color: #d7e3e7;
    margin: 6px 0;
    line-height: 1.5;
}

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

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

.how-it-works-footer {
    text-align: center;
    font-size: 18px;
    color: var(--muted);
    margin-top: 8px;
}

.how-it-works-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.how-it-works-actions .hero-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border: none;
}

.how-it-works-actions .hero-btn.primary {
    background: linear-gradient(90deg, rgba(46,195,150,0.85), rgba(46,195,150,0.75));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(46,195,150,0.15);
}

.how-it-works-actions .hero-btn.primary:hover {
    background: linear-gradient(90deg, rgba(46,195,150,0.95), rgba(46,195,150,0.88));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46,195,150,0.22);
}

.how-it-works-actions .hero-btn.secondary {
    background: linear-gradient(90deg, rgba(96,149,190,0.8), rgba(96,149,190,0.7));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(96,149,190,0.12);
}

.how-it-works-actions .hero-btn.secondary:hover {
    background: linear-gradient(90deg, rgba(96,149,190,0.9), rgba(96,149,190,0.82));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(96,149,190,0.18);
}


.hero-btn:hover {
    background: linear-gradient(90deg, rgba(46,195,150,0.95), rgba(46,195,150,0.88));
    transform: translateY(-2px);
    opacity: 1;
    box-shadow: 0 12px 32px rgba(46,195,150,0.22);
}

.hero-btn:focus,
.hero-btn:active {
    outline: 3px solid rgba(46,195,150,0.14);
    outline-offset: 2px;
}

/* Find Broker CTA */
.find-broker-cta{
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    position: relative;
}
.find-broker-inner{ 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: center; 
    position: relative; 
    z-index: 1;
}
.broker-cta-card{ 
    background: linear-gradient(135deg, rgba(46,195,150,0.04), rgba(96,149,190,0.03));
    padding: 40px 48px; 
    border-radius: 12px;
    text-align: center; 
    max-width: 1200px; 
    width: 100%; 
    box-sizing: border-box; 
    border: 1px solid rgba(46,195,150,0.08);
    box-shadow: 0 4px 16px rgba(2,6,23,0.2);
    margin-top: -1px;
}
.broker-cta-card h2{ 
    font-size: 24px; 
    margin-bottom: 16px; 
    font-weight: 700; 
    letter-spacing: -0.2px;
    color: var(--text);
}
.broker-cta-card p{ 
    color: var(--muted); 
    margin-bottom: 28px; 
    font-size: 15px; 
    line-height: 1.6; 
    font-weight: 400; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}
.broker-actions{ 
    display: flex; 
    gap: 14px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.broker-actions .hero-btn{
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
}


.investor-faqs {
    background: transparent;
    padding: 80px 20px;
    padding-bottom: 0px;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.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-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-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-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-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    transition: all .3s ease;
}

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

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

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

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

.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-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
    background: rgba(46,195,150,0.1);
}

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

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

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

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

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

.faq-list {
    margin: 8px 0;
    padding-left: 20px;
    list-style: none;
}

.faq-list li {
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    color: #d7e3e7;
    font-size: 14px;
    line-height: 1.5;
}

.faq-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.risk-disclosure-cta {
    padding: 24px 20px;
    background: transparent;
}

.risk-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    background: rgba(12,14,16,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
}

.risk-cta-container p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

.risk-link {
    color: #a8b8c0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.risk-link:hover {
    color: var(--text);
}

@media (max-width: 1000px) {
    .hero-section {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 920px) {
    .hero-container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .how-it-works {
    padding: 28px 20px;
}
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .step:nth-child(1),
    .step:nth-child(2),
    .step:nth-child(3),
    .step:nth-child(4),
    .step:nth-child(5) {
        grid-column: span 1;
    }
    .step {
        padding: 16px;
        min-height: auto;
    }
    .how-it-works-actions {
        flex-direction: column;
        gap: 12px;
    }
    .how-it-works-actions .hero-btn {
        width: 100%;
        justify-content: center;
    }
    .find-broker-cta {
    margin-top: 60px;
}
    .broker-cta-card {
        padding: 24px 20px 28px;
        border-radius: 8px;
    }
    .broker-actions {
        flex-direction: column;
        gap: 10px;
    }
    .broker-actions .hero-btn {
        width: 100%;
        justify-content: center;
    }
    .investor-faqs {
    padding: 60px 20px;
}
    .faqs-header {
    margin-bottom: 32px;
}
    .faqs-container {
    max-width: 100%;
}
    .faq-accordion {
    gap: 10px;
}
    .faq-toggle {
    padding: 16px 18px;
}
    .faq-question {
    font-size: 15px;
}
    .faq-icon {
        font-size: 24px;
        min-width: 28px;
        height: 28px;
    }
    .faq-content > * {
        padding: 0 18px 16px 18px;
    }
}
@media (max-width: 520px) {
    .hero-section {
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    .hero-container {
        padding: 60px 20px 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .steps {
    grid-template-columns: 1fr;
}
    .step:nth-child(1),
    .step:nth-child(2),
    .step:nth-child(3),
    .step:nth-child(4),
    .step:nth-child(5) {
        grid-column: span 1;
    }
    .section-header {
    font-size: 1.6rem;
}
    .section-subtext {
    font-size: 14px;
}
    .step h3 {
        font-size: 16px;
    }
    .step p {
        font-size: 13px;
    }
    .faq-question {
    font-size: 15px;
}
    .faq-answer {
    font-size: 13px;
}
}

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

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

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