
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.stock-chart {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 200px;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d, #ffd93d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    padding: 25px 50px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.6);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 550px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: float-card 6s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid2" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 4rem;
    color: white;
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
}

.profile-info {
    text-align: center;
    z-index: 2;
    position: relative;
}

.profile-name {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.1rem;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 900;
    color: #00d4ff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #00d4ff;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
}

.chart-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trading-chart {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 200px;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.3));
    clip-path: polygon(0 100%, 10% 80%, 20% 60%, 30% 70%, 40% 40%, 50% 20%, 60% 30%, 70% 10%, 80% 25%, 90% 5%, 100% 15%, 100% 100%);
    animation: chart-animate 3s ease-in-out infinite;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #cccccc;
}

.testimonial-author {
    font-weight: 900;
    color: #00d4ff;
    font-size: 1.1rem;
}

/* Call to Action */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(45deg, #ff6b9d, #00d4ff, #ffd93d);
    text-align: center;
    position: relative;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px 60px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.final-cta-button:hover {
    background: white;
    color: #ff6b9d;
    transform: translateY(-5px);
}

/* Animations */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes chart-animate {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(0, 212, 255, 0.3);
    font-size: 2rem;
    animation: float-random 15s linear infinite;
}

@keyframes float-random {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Investment Philosophy Section */
.investment-philosophy {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f, #1a1a2e);
    position: relative;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.overlay-text {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.overlay-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    flex: 1;
}

.stat-big {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00d4ff;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.philosophy-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-text h3 {
    font-size: 1.3rem;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 20px;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.philosophy-points {
    margin-bottom: 40px;
}

.point-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 0;
}

.point-item i {
    color: #00d4ff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.point-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Community Section */
.community-showcase {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-content.reverse {
    direction: rtl;
}

.community-content.reverse > * {
    direction: ltr;
}

.community-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-text h3 {
    font-size: 1.3rem;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 20px;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.community-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.community-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.activity-indicators {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.activity-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.activity-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 10px;
}

.activity-dot.online {
    background: #00ff00;
    animation: pulse 2s infinite;
}

.activity-dot.pulse {
    background: #ff6b9d;
    animation: pulse 1.5s infinite;
}

/* Enhanced Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-result {
    background: linear-gradient(45deg, #ff6b9d, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    font-weight: 900;
    color: #00d4ff;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-question i {
    margin-right: 15px;
    color: #ff6b9d;
}

.faq-answer {
    padding: 0 30px 25px 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Enhanced CTA */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-benefit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 1rem;
}

.urgency-text {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd93d;
    text-align: center;
    animation: pulse 2s infinite;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .philosophy-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-text h2,
    .community-text h2 {
        font-size: 2rem;
    }

    .success-metrics {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .community-content.reverse {
        direction: ltr;
    }
}
.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: #05C705;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }