/* Design System & Variables */
:root {
    --color-bg-dark: #0a0f1d;
    --color-bg-card: #111827;
    --color-bg-input: #1f2937;
    --color-primary: #635bff; /* Cornflower Blue */
    --color-primary-hover: #4f46e5;
    --color-accent: #f36444; /* Red-Orange */
    --color-accent-hover: #e05333;
    --color-text-main: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-border: #1f2937;
    --color-border-hover: #374151;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 40px -5px rgba(99, 91, 255, 0.2);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-w-lg {
    max-w: 800px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 91, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-muted);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glowing backgrounds */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    left: -10%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: 30%;
    right: -10%;
}

.glow-3 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    bottom: 5%;
    left: 20%;
}

/* Top Launch Flash Banner */
.top-banner {
    position: relative;
    z-index: 10;
}

.launch-flash-bar {
    background: linear-gradient(90deg, #0a0f1d 0%, #2a1a4e 30%, #1a0f2e 50%, #3a0f1a 70%, #0a0f1d 100%);
    background-size: 200% 100%;
    border-bottom: 1px solid rgba(99, 91, 255, 0.4);
    padding: 14px 0;
    text-align: center;
    animation: bannerSlide 4s linear infinite;
}

.launch-flash-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.launch-top-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    animation: textFlash 1.2s ease-in-out infinite;
}

.launch-top-text strong {
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 800;
}

.flash-dot {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--color-accent), 0 0 16px var(--color-accent);
}

@keyframes bannerSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes textFlash {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(243, 100, 68, 0.6); }
    50% { opacity: 0.75; text-shadow: 0 0 20px rgba(243, 100, 68, 1), 0 0 40px rgba(99, 91, 255, 0.6); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.badge {
    background-color: var(--color-accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.logo .highlight {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    font-size: 22px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 80px;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 91, 255, 0.1);
    border: 1px solid rgba(99, 91, 255, 0.2);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.stat-item p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.hero-stats .divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

/* Mockup / Visualization */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-normal);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
}

.mockup-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-header .dots span:nth-child(1) { background-color: var(--color-danger); }
.mockup-header .dots span:nth-child(2) { background-color: var(--color-accent); }
.mockup-header .dots span:nth-child(3) { background-color: var(--color-success); }

.mockup-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.mockup-body {
    padding: 24px;
}

.mockup-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.mockup-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 16px;
}

.mockup-card .label {
    font-size: 12px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.mockup-card .value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.mockup-card .trend {
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.trend.up { color: var(--color-success); }

.status-card .progress-bar {
    background-color: rgba(255, 255, 255, 0.05);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin: 12px 0 8px;
}

.status-card .progress {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    height: 100%;
}

.status-card .progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.status-badge.safe {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.mockup-chart-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 16px;
}

.chart-legend {
    display: flex;
    gap: 12px;
    color: var(--color-text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.legend-dot.target { background-color: var(--color-success); }
.legend-dot.equity { background-color: var(--color-primary); }

.mockup-chart {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Bar / Partner Logos */
.trust-bar {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
}

.trust-title {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.logo-ticker {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ticker-wrapper span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-fast);
}

.ticker-wrapper span:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Sections General */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Models Grid */
.models-section {
    padding: 100px 0;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.model-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.model-card:hover {
    border-color: rgba(99, 91, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.model-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.model-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.model-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.model-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.model-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-main);
}

.model-features li i {
    color: var(--color-success);
    margin-top: 3px;
}

/* Why Fund Forge Features Layout */
.features-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.features-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.features-info h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.features-info > p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.f-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(99, 91, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.feature-row h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-row p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.f-grid-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-normal);
}

.f-grid-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.card-icon.blue { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.card-icon.red { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }
.card-icon.green { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.card-icon.purple { background-color: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.f-grid-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.f-grid-card p {
    color: var(--color-text-muted);
    font-size: 13px;
}

/* Pricing Interactive Challenge Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-text-main);
    border-color: var(--color-border-hover);
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.size-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.size-btn {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.size-btn:hover {
    color: var(--color-text-main);
    border-color: var(--color-border-hover);
}

.size-btn.active {
    background-color: rgba(99, 91, 255, 0.1);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.pricing-box {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.pricing-details {
    padding: 48px;
    border-right: 1px solid var(--color-border);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.active-model-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.active-size {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
}

.price-display {
    text-align: right;
}

.price-display .price {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    line-height: 1.1;
}

.price-display .price-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.rules-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.rule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rule-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.rule-name i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

.icon-blue { color: #3b82f6; }
.icon-blue-light { color: #60a5fa; }
.icon-red { color: #ef4444; }
.icon-red-dark { color: #b91c1c; }
.icon-green { color: #10b981; }
.icon-purple { color: #8b5cf6; }

.rule-value {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-main);
}

.pricing-actions {
    text-align: center;
}

.pricing-disclaimer {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 14px;
}

.pricing-benefits {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-benefits h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.benefit-list li i {
    color: var(--color-success);
    margin-top: 2px;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.calculator-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.calc-group {
    margin-bottom: 30px;
}

.calc-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.form-select {
    width: 100%;
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-select:focus {
    border-color: var(--color-primary);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-labels label {
    margin-bottom: 0;
}

.slider-labels span {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
}

.form-range {
    width: 100%;
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    outline: none;
    appearance: none;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.result-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.result-box.highlighted {
    background-color: rgba(243, 100, 68, 0.05);
    border-color: rgba(243, 100, 68, 0.15);
}

.result-box .label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.result-box .value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}

/* Launch Date Badge */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.15), rgba(243, 100, 68, 0.15));
    border: 1px solid rgba(99, 91, 255, 0.35);
    color: var(--color-text-main);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    margin-top: 16px;
    animation: pulseBadge 2.5s ease-in-out infinite;
}

.launch-badge i {
    color: var(--color-accent);
    font-size: 20px;
}

.launch-badge strong {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 20px;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 91, 255, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(99, 91, 255, 0); }
}

/* Testimonials / Success stories */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: #eab308;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.trader-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.trader-info .avatar {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-text-muted);
}

.trader-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.trader-info span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Promotional Partner Section */
.partner-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 91, 255, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(99, 91, 255, 0.15);
}

.partner-card-wrapper {
    max-width: 680px;
    margin: 40px auto 0;
    position: relative;
}

.partner-card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, rgba(17, 24, 39, 0.7) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-normal);
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 91, 255, 0.4);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 30px -5px rgba(99, 91, 255, 0.15);
}

.partner-card-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 91, 255, 0.08) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: -1;
    transition: var(--transition-normal);
}

.partner-card:hover .partner-card-glow {
    background: radial-gradient(circle, rgba(99, 91, 255, 0.15) 0%, transparent 70%);
    transform: scale(1.2);
}

.partner-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, rgba(243, 100, 68, 0.1) 0%, rgba(99, 91, 255, 0.1) 100%);
    border: 1px solid rgba(243, 100, 68, 0.25);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.partner-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.partner-title h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.verified-check {
    color: #38bdf8;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.channel-handle {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.partner-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
}

.partner-stat .stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.partner-bio {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.partner-bio strong {
    color: var(--color-text-main);
}

.partner-actions {
    display: flex;
    justify-content: flex-start;
}

.partner-btn {
    gap: 10px;
}

.partner-btn i.fa-arrow-up-right-from-square {
    font-size: 12px;
    opacity: 0.8;
}

.glow-partner {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 91, 255, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 600px) {
    .partner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .partner-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
    }
    
    .partner-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    
    .partner-stat {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 10px;
    }
    
    .partner-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .partner-card {
        padding: 24px;
    }
}

/* FAQ Accordion */
.faq-section {
    padding: 100px 0;
}

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

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text-main);
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-question i {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: transform var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Call to Action */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-color: rgba(10, 15, 29, 0.7);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: #050810;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links-col a, .footer-links-col p {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--color-text-main);
}

.footer-links-col p i {
    margin-right: 8px;
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.risk-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .dashboard-mockup {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }
    
    .dashboard-mockup:hover {
        transform: none;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pricing-box {
        grid-template-columns: 1fr;
    }
    
    .pricing-details {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: left 0.4s ease;
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 20px;
    }

    .nav-mobile-only {
        display: block !important;
    }
    
    .features-cards {
        grid-template-columns: 1fr;
    }
    
    .calc-results {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.nav-mobile-only {
    display: none;
}
