:root {
    --bg-color: #1a221c; /* Deep forest green */
    --card-bg: rgba(241, 232, 212, 0.05);
    --card-border: rgba(241, 232, 212, 0.15);
    --text-main: #F1E8D4; /* Cream */
    --text-muted: #a3b0a5;
    --accent-primary: #F1E8D4; /* Cream for primary accents */
    --accent-secondary: #c5d489; /* Pistachio green */
    --hover-highlight: #c5d489; /* Bright green highlight for hovers */
    --accent-gradient: linear-gradient(135deg, var(--text-main), var(--accent-secondary));
    --warning: #ffb703;
    --success: #6cc24a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 50%, rgba(197, 212, 137, 0.03), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(241, 232, 212, 0.03), transparent 25%);
}

/* Tools Marquee Section */
.tools-marquee-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    margin-bottom: 5rem;
}
.marquee-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-weight: 700;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
    gap: 6rem;
    padding: 0 3rem;
    align-items: center;
}
.marquee-content:hover {
    animation-play-state: paused;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.tool-logo img {
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}
.tool-logo img:hover {
    filter: brightness(1) invert(0); /* Return to original color since backgrounds are transparent */
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
}

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

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

/* Components */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 212, 137, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--hover-highlight);
    box-shadow: 0 15px 40px rgba(197, 212, 137, 0.15);
}

.glass-card:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 232, 212, 0.4);
    background: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    padding: 0.9rem 1.9rem;
    border-radius: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-color);
}

.btn-sm { padding: 0.7rem 1.8rem; font-size: 0.95rem; }
.btn-lg { padding: 1.3rem 2.8rem; font-size: 1.15rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 34, 28, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s;
    opacity: 0.8;
}

.nav-links a:not(.btn-primary):hover {
    opacity: 1;
    color: var(--hover-highlight);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 0 2rem;
}

.hero-bg-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(241, 232, 212, 0.08) 0%, rgba(26, 34, 28, 0) 60%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(241, 232, 212, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(241, 232, 212, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    background: var(--card-bg);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--hover-highlight);
    color: var(--hover-highlight);
    transform: translateY(-3px);
}

.highlight-item svg {
    transition: stroke 0.3s ease, fill 0.3s ease;
}

.highlight-item:hover svg {
    stroke: var(--hover-highlight);
}

.scarcity-text {
    margin-top: 1.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 232, 212, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(241, 232, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 232, 212, 0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shared Section Styles */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

/* About Section Workflow */
.workflow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 4rem 0;
}

.workflow-step {
    background: var(--text-main);
    color: var(--bg-color);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.workflow-step:hover {
    background: var(--bg-color);
    color: var(--hover-highlight);
    border-color: var(--hover-highlight);
    transform: scale(1.05);
}

.arrow {
    color: var(--text-muted);
    font-size: 2rem;
    opacity: 0.5;
}

.bootcamp-format {
    max-width: 700px;
    margin: 0 auto;
}
.bootcamp-format h3 { margin-bottom: 2rem; text-align: center; font-size: 1.8rem;}
.bootcamp-format ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bootcamp-format li { 
    padding: 1.2rem; 
    background: rgba(0,0,0,0.1); 
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.bootcamp-format li:hover {
    border-color: var(--hover-highlight);
    transform: translateX(5px);
}
.bootcamp-format strong { 
    color: var(--text-main); 
    display: block; 
    margin-bottom: 0.3rem; 
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.bootcamp-format li:hover strong {
    color: var(--hover-highlight);
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}
.grid-3 .glass-card {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.grid-3 .glass-card svg {
    margin-bottom: 1.5rem;
}
.grid-3 .glass-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.grid-3 .glass-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1; /* Pushes content to fill the card evenly */
}

/* Roadmap / Journey Section */
.roadmap-timeline {
    position: relative;
    max-width: 700px;
    margin: 4rem auto;
    padding-left: 3.5rem;
}

.roadmap-line {
    position: absolute;
    top: 0; left: 15px;
    height: 100%; width: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.roadmap-step {
    position: relative;
    margin-bottom: 3.5rem;
    opacity: 0.4;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

.roadmap-step.active-step {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-icon {
    position: absolute;
    left: -3.5rem; top: 1.5rem;
    width: 34px; height: 34px;
    background: var(--bg-color);
    border: 3px solid var(--text-muted);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.6s ease;
    z-index: 2;
    color: var(--text-muted);
}

.roadmap-step.active-step .roadmap-icon {
    border-color: var(--hover-highlight);
    background: var(--hover-highlight);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(197, 212, 137, 0.5);
}

.roadmap-step .glass-card {
    padding: 2rem;
    text-align: left;
    display: block;
}
.roadmap-step .glass-card h4 {
    margin-bottom: 0.8rem;
}

/* Curriculum Section */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.week-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--text-main);
    opacity: 0.5;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.week-card:hover::before {
    background: var(--hover-highlight);
    opacity: 1;
}

.week-header {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.week-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.week-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.week-card li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.week-card:hover li {
    color: rgba(255,255,255,0.8);
}

.week-card li:hover {
    color: var(--text-main);
}

.week-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-main);
    font-weight: bold;
    transition: color 0.3s ease;
}

.week-card li:hover::before {
    color: var(--hover-highlight);
}

.weekly-outcome {
    background: rgba(0,0,0,0.2);
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    border-left: 4px solid var(--text-main);
    color: var(--text-main);
}

/* Pricing Section */
.pricing-section {
    position: relative;
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(241, 232, 212, 0.08) 0%, rgba(241, 232, 212, 0.02) 100%);
    border: 1px solid rgba(241, 232, 212, 0.2);
}

.highlight-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(241, 232, 212, 0.1), transparent 30%);
    animation: rotate 6s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.badge-accent {
    display: inline-block;
    background: var(--text-main);
    color: var(--bg-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.price span {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.future-price {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.bonus-box {
    text-align: left;
    background: rgba(0,0,0,0.2);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.bonus-box h4 {
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bonus-box ul {
    list-style: none;
}
.bonus-box li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.bonus-box li::before {
    content: '✓';
    color: var(--text-main);
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 6rem 5% 2rem;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer .disclaimer {
    margin-bottom: 4rem;
    text-align: left;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer .disclaimer h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}
.footer .disclaimer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.footer .disclaimer p:last-child { margin-bottom: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--hover-highlight);
}

/* Legal Pages */
.legal-section {
    padding: 120px 5% 5rem;
    max-width: 900px;
    margin: 0 auto;
}
.legal-section h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--hover-highlight);
}
.legal-content p, .legal-content ul {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.legal-content ul {
    padding-left: 1.5rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 { 
        grid-template-columns: 1fr; 
        max-width: 550px; 
        margin: 0 auto; 
    }
}

@media (max-width: 900px) {
    .curriculum-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
    .bootcamp-format ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-highlights { flex-direction: column; gap: 1rem; }
    .nav-links { display: none; } 
    .workflow-diagram { flex-direction: column; gap: 0.5rem; }
    .arrow { transform: rotate(90deg); margin: 0.5rem 0; }
    .pricing-card { padding: 3rem 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Multi-step Modal Styles */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(8px);
    z-index: 1000; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-container {
    background: var(--bg-color); border: 1px solid var(--card-border);
    border-radius: 20px; width: 100%; max-width: 600px; padding: 2.5rem;
    position: relative; box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transform: translateY(20px); transition: transform 0.3s ease;
    max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 20px; background: transparent; border: none;
    color: var(--text-muted); font-size: 1.5rem; cursor: pointer;
}
.modal-step { display: none; }
.modal-step.active { display: block; animation: fadeStep 0.4s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.step-title { font-size: 1.6rem; margin-bottom: 0.5rem; font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-main); }
.step-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.5; }
.form-label { display: block; margin-bottom: 0.8rem; font-weight: 600; font-size: 1.1rem; }
.form-input {
    width: 100%; padding: 12px; font-size: 1rem; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: var(--text-main); border-radius: 8px;
    outline: none; transition: border-color 0.3s; font-family: inherit;
}
.form-input:focus { border-color: var(--hover-highlight); }
.option-label {
    display: flex; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; cursor: pointer; margin-bottom: 10px; transition: all 0.3s;
}
.option-label:hover { background: rgba(255,255,255,0.05); }
.option-label input { margin-right: 15px; accent-color: var(--hover-highlight); transform: scale(1.2); }
.modal-actions { display: flex; justify-content: space-between; margin-top: 2rem; }
.progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 2rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--hover-highlight); width: 0%; transition: width 0.3s; }

