/* VSE Standard Blueprint - Coaching Platform Pro Theme */
:root {
    --bg-main: #060a08;
    --bg-card: rgba(15, 26, 19, 0.6);
    --bg-card-hover: rgba(20, 35, 25, 0.8);
    --accent: #00FF66;
    --accent-dark: #00cc52;
    --accent-glow: rgba(0, 255, 102, 0.3);
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --border-glass: rgba(0, 255, 102, 0.15);
    --border-glass-bright: rgba(0, 255, 102, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.accent { color: var(--accent); }
.glow-text { text-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow); }
.mt-4 { margin-top: 2rem; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(6, 10, 8, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.lang-switch:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
}

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

.btn-outline:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 15px var(--accent-glow);
    color: #fff;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Pitch Container & Sections */
.pitch-container {
    padding-top: 80px;
    width: 100%;
}

.pitch-slide {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 10%;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 4rem;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-bright);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Hero Section */
#hero {
    text-align: left;
    align-items: flex-start;
    background: radial-gradient(circle at center, rgba(0,255,102,0.05) 0%, transparent 70%);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0,255,102,0.1);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Features Solution */
.feature-grid {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.feature-row {
    display: flex;
    gap: 2rem;
}

.feature-text {
    flex: 1;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.feature-text h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Stats / Advantage */
.stats-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(10, 20, 15, 0.8);
    border: 1px solid var(--accent);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px var(--accent-glow);
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0 10px;
}

/* Pricing / Business Model */
.pricing-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
}

.card-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.card-features {
    list-style: none;
}

.card-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.card-features i {
    color: var(--accent);
    margin-right: 10px;
}

.active-card {
    border-color: var(--accent);
    position: relative;
}

.badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Financial Roadmap */
.roadmap-timeline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
}

.timeline-step {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.timeline-step .step-content {
    text-align: left;
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 2;
    border-top: 4px solid var(--accent);
}

.timeline-step:nth-child(2) .step-content { border-top-color: #0088ff; }
.timeline-step:nth-child(3) .step-content { border-top-color: #a855f7; }

.step-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0,255,102,0.15);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.val-metric {
    background: rgba(0,0,0,0.4);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.val-metric span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.val-metric strong {
    font-size: 1.8rem;
    color: #fff;
    font-family: var(--font-heading);
}

.timeline-step:nth-child(1) .val-metric strong { color: var(--accent); }
.timeline-step:nth-child(2) .val-metric strong { color: #0088ff; }
.timeline-step:nth-child(3) .val-metric strong { color: #a855f7; }

.step-features {
    list-style: none;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.step-features li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.step-features li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-features i {
    color: var(--text-main);
    margin-top: 4px;
}

.timeline-step:nth-child(1) .step-features i { color: var(--accent); }
.timeline-step:nth-child(2) .step-features i { color: #0088ff; }
.timeline-step:nth-child(3) .step-features i { color: #a855f7; }

/* The Ask */
.ask-wrapper {
    max-width: 1000px;
    width: 100%;
}

.glow-border {
    box-shadow: inset 0 0 20px var(--accent-glow), 0 0 20px var(--accent-glow);
    border-color: var(--accent);
}

.valuation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.val-item {
    background: rgba(0,0,0,0.4);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.val-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.val-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* Footer */
.pitch-footer {
    background: rgba(6, 10, 8, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 3rem 5% 1rem;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   ABSOLUTE RESPONSIVE FOR ALL MOBILE DEVICES
   ========================================= */

@media (max-width: 1200px) {
    .valuation-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .feature-row { flex-direction: column; }
    .roadmap-timeline { flex-direction: column; gap: 2rem; }
    .hero-title { font-size: 3.5rem; }
    .pitch-slide { padding: 4rem 5%; }
}

@media (max-width: 768px) {
    /* Navbar tweaks */
    .navbar { padding: 1rem 5%; }
    .nav-links { display: none; } /* Hide main links on mobile */
    .nav-btn { display: none; } /* Hide invest button in navbar to save space */
    .logo { font-size: 1.2rem; }
    
    /* Layout tweaks */
    .pitch-container { padding-top: 60px; }
    .pitch-slide { min-height: auto; padding: 4rem 5%; }
    
    /* Typography adjustments */
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
    .section-title { font-size: 2.2rem; }
    .section-desc { font-size: 1rem; margin-bottom: 2rem; }
    
    /* Grids to single column */
    .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-4 { grid-template-columns: 1fr; }
    .valuation-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    /* Elements scaling */
    .glass-card { padding: 1.5rem; }
    .stat-box { width: 160px; height: 160px; }
    .stat-num { font-size: 2.5rem; }
    .val-value { font-size: 2rem; }
    .feature-text { padding: 1.5rem; }
    
    /* Ensure Hero actions are centered on mobile */
    #hero { align-items: center; text-align: center; }
    .hero-actions { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
    .hero-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .stats-container { gap: 1.5rem; }
    .stat-box { width: 140px; height: 140px; }
    .stat-num { font-size: 2rem; }
    .val-item { padding: 1rem; }
    .val-value { font-size: 1.8rem; }
}
