:root {
    --color-bg: #2a373a;
    --color-bg-alt: #1f292b;
    --color-card-bg: #55696b;
    --color-text-main: #e0e3e2;
    --color-text-muted: #b3bbb9;
    --color-accent: #e0e3e2;
    --color-white: #ffffff;
    --color-light-bg: #e0e3e2;
    --color-dark-text: #2a373a;

    --font-heading: 'Arboria-Bold', sans-serif;
    --font-body: 'Arboria-Book', sans-serif;
    --font-signature: 'Rock Salt', cursive;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --border-radius: 2px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
    font-weight: 300;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-text-muted);
    color: var(--color-text-muted);
}

.btn-outline:hover {
    border-color: var(--color-white);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(42, 55, 58, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1001;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    height: 70px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-heading);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-line-1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-line-2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a:not(.btn) {
    font-family: var(--font-heading);
    font-size: 0.70rem;
    color: var(--color-text-muted);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--color-white);
}

/* Countdown Timer */
.cohort-timer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-heading);
}

.timer-label-left,
.timer-label-right {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.timer-countdown {
    display: flex;
    gap: 2rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.time-value {
    font-size: 1.8rem;
    color: #D9D2C5;
    /* Gold/Beige color from screenshot */
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.time-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .cohort-timer {
        /* Keep timer visible but scale it down */
        gap: 0.5rem;
    }

    .timer-label-left,
    .timer-label-right {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .timer-countdown {
        gap: 0.8rem;
    }

    .time-value {
        font-size: 1.2rem;
    }

    .time-label {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cohort-timer {
        gap: 0.3rem;
        flex-direction: column;
    }

    .timer-label-left {
        display: block;
        font-size: 0.6rem;
        margin-bottom: 0;
    }

    .timer-label-right {
        display: none;
    }

    .timer-countdown {
        gap: 0.5rem;
    }

    .time-value {
        font-size: 1rem;
    }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    opacity: 0.3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 13, 14, 0.01), rgba(11, 13, 14, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    padding-top: 80px;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
    opacity: 0.8;
}

.hero .subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hero .subtitle strong {
    color: var(--color-white);
    font-weight: 600;
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--color-accent);
}

/* Marquee */
.marquee-container {
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--color-bg);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.marquee-content span {
    margin: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Intro Section */
.intro {
    background-color: #0b0d0e;
    /* Very dark, almost black - matching pipeline section */
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight {
    color: var(--color-card-bg);
    background: linear-gradient(120deg, transparent 0%, transparent 100%);
    -webkit-text-stroke: 1px var(--color-white);
}

.intro-text {
    padding-right: var(--spacing-lg);
}

.signature {
    font-family: var(--font-signature);
    font-size: 2rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-md);
    transform: rotate(-5deg);
}

.video-placeholder-small {
    position: relative;
    width: 100%;
    border: 2px solid var(--color-text-muted);
    padding: 10px;
    cursor: pointer;
}

.video-placeholder-small img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    transition: var(--transition);
}

.video-placeholder-small:hover .play-button-small {
    background: var(--color-white);
    color: var(--color-bg);
    transform: translate(-50%, -50%) scale(1.1);
}

.intro-video-element {
    width: 100%;
    display: block;
    border: 2px solid var(--color-text-muted);
    padding: 10px;
}

/* Light Section (Day 1) */
.light-section {
    background-color: var(--color-light-bg);
    color: var(--color-dark-text);
    padding: var(--spacing-xl) 0;
}

.dark-text {
    color: var(--color-dark-text) !important;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.dark-card {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: var(--spacing-md);
    flex-grow: 1;
}

.dark-card .check-list li {
    color: var(--color-text-muted);
}

.dark-card .check-list li::before {
    color: var(--color-accent);
}

.dark-banner {
    background: var(--color-dark-text);
    color: var(--color-white);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    text-align: center;
    border-radius: var(--border-radius);
}

.cohort-details {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.divider {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Toolkit Grid (New) */
.breakdown {
    padding: var(--spacing-xl) 0;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.toolkit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.light-section .toolkit-item {
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toolkit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-text-muted);
    transform: translateY(-5px);
}

.light-section .toolkit-item:hover {
    background: var(--color-bg-alt);
    border-color: rgba(255, 255, 255, 0.2);
}

.toolkit-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.toolkit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.toolkit-item:hover .toolkit-img img {
    opacity: 1;
    transform: scale(1.05);
}

.toolkit-content {
    padding: var(--spacing-md);
}

.toolkit-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.light-section .toolkit-content h4 {
    color: var(--color-white);
}

.light-section .toolkit-content p {
    color: var(--color-text-muted);
}

.total-value-banner {
    margin-top: var(--spacing-lg);
    text-align: center;
    padding: var(--spacing-md);
    border: 2px solid var(--color-accent);
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* Center block */
}

.total-value-banner h3 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--color-accent);
}

.light-section .total-value-banner {
    border-color: var(--color-dark-text);
}

.light-section .total-value-banner h3 {
    color: var(--color-dark-text);
}

/* Testimonials (Masonry) */
.testimonials {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-xl) 0;
}

.masonry-testimonials {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 1024px) {
    .masonry-testimonials {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-testimonials {
        column-count: 1;
    }
}

.testimonial-card {
    background: var(--color-bg);
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    display: inline-block;
    /* Fix for column break issues */
    width: 100%;
}

.quote-mark {
    font-family: serif;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.star-rating {
    color: #D9D2C5;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    display: block;
    color: var(--color-white);
}

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

/* Curriculum Roadmap (Expanded) */
.curriculum {
    padding: var(--spacing-xl) 0;
    background-color: #0b0d0e;
    /* Very dark, almost black - matching pipeline section */
}

.roadmap {
    position: relative;
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), rgba(255, 255, 255, 0.1));
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.roadmap-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.roadmap-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 80px;
    /* Larger marker */
    height: 80px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    z-index: 2;
}

.roadmap-content {
    width: 100%;
    padding-right: 6rem;
    padding-left: 1rem;
    text-align: right;
}

.roadmap-item.right .roadmap-content {
    text-align: left;
    padding-left: 6rem;
    padding-right: 1rem;
}

.roadmap-image {
    position: absolute;
    width: 300px;
    max-width: calc(50% - 60px);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Regular items: content on left, image on right */
.roadmap-item:not(.right) .roadmap-image {
    left: calc(50% + 60px);
    right: auto;
    padding-left: 2rem;
    padding-right: 0;
}

/* Right items: content on right, image on left */
.roadmap-item.right .roadmap-image {
    right: calc(50% + 60px);
    left: auto;
    padding-right: 2rem;
    padding-left: 0;
}

.roadmap-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-desc {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-style: italic;
}

.phase-details li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    position: relative;
}

.phase-details li strong {
    color: var(--color-accent);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

/* Pricing Section - Premium Upgrade */
.pricing {
    background: radial-gradient(circle at center, #2f3d40 0%, #1f292b 100%);
    /* Subtle spotlight effect */
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Add a background glow blob behind the cards */
.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 227, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.pricing .section-title {
    text-shadow: 0 0 20px rgba(224, 227, 226, 0.3);
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    border-radius: 16px;
    /* More rounded for modern look */
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Featured Card Styling */
.pricing-card.featured {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(224, 227, 226, 0.3);
    /* Accent color border */
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(224, 227, 226, 0.05);
    /* Glow */
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(224, 227, 226, 0.1);
}

/* Badge Styling */
.pricing-card .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-top {
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-top h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
}

.pricing-card.featured .card-top h3 {
    color: var(--color-white);
}

.card-bottom {
    padding: 2rem;
    text-align: center;
    background: transparent;
    /* Remove darker bg */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-white);
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: normal;
    vertical-align: middle;
}

.pricing-card .total {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.total-cost {
    font-size: 1.1rem;
    color: var(--color-accent);
    /* Highlight total cost */
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Button enhancements within cards */
.pricing-card .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.pricing-card.featured .btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.guarantee-box {
    margin-top: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border: 1px dashed var(--color-text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 3rem;
}

/* FAQ */
.faq {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-xl) 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: #111;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex: 1;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    flex-shrink: 0;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text-muted);
    transition: var(--transition);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .roadmap-line {
        left: 20px;
    }

    .roadmap-item,
    .roadmap-item.right {
        padding: 0 0 0 60px;
        justify-content: flex-start;
        text-align: left;
    }

    .roadmap-marker {
        left: 20px;
    }

    .roadmap-content,
    .roadmap-item.right .roadmap-content {
        text-align: left;
        width: 100%;
        padding: 0;
    }

    .roadmap-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: auto;
        right: auto;
        margin-top: 1rem;
        padding: 0;
    }

    .roadmap-item .roadmap-image,
    .roadmap-item.right .roadmap-image {
        padding-left: 0;
        padding-right: 0;
    }

    .intro-text {
        padding-right: 0;
        margin-bottom: var(--spacing-md);
    }
}

/* Value Stack Section */
.value-stack {
    background-color: #0f1213;
    /* Very dark, distinct from pricing */
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 5;
}

.value-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.value-card {
    background: #1a2224;
    /* Dark card background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    /* Deep shadow for pop */
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    color: var(--color-white);
    line-height: 1.1;
    text-transform: uppercase;
}

.value-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: var(--color-accent);
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 4px;
    flex-shrink: 0;
}

.list-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.list-text strong {
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Foundational Curriculum Section */
.foundational-curriculum {
    background-color: var(--color-bg);
    padding: var(--spacing-xl) 0;
    color: var(--color-text-main);
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.curriculum-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    margin-bottom: 0;
    color: #e0e3e2;
    /* Off-white */
}

.curriculum-desc {
    max-width: 400px;
    font-family: monospace;
    /* Tech/Raw feel */
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.module-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.module-list::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.module-list.expanded::after {
    opacity: 0;
}

.module-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.module-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.module-number {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 2rem;
    font-size: 1rem;
    width: 30px;
}

.module-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    flex-grow: 1;
    color: var(--color-white);
}

.module-time {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.hidden-modules {
    display: none;
}

.hidden-modules.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .curriculum-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .curriculum-desc {
        text-align: left;
    }

    .module-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .module-title {
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
    }

    .module-time {
        margin-left: auto;
    }
}

/* Pipeline Section (New) */
.pipeline-section {
    background-color: #0b0d0e;
    /* Very dark, almost black */
    padding: var(--spacing-xl) 0;
    color: var(--color-text-main);
    font-family: 'Courier New', Courier, monospace;
    /* Typewriter feel */
}

.pipeline-header {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.pill-label {
    display: inline-block;
    background: var(--color-bg);
    padding: 4px 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.pipeline-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.pipeline-subtitle {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-weight: bold;
}

.pipeline-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pipeline-desc-2 {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pipeline-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
}

.pipeline-flow span:not(.arrow) {
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.pipeline-flow span:not(.arrow):hover {
    color: var(--color-white);
}

.pipeline-flow .arrow {
    color: var(--color-card-bg);
    /* Muted accent */
}

.pipeline-phases {
    max-width: 1000px;
    margin: 0 auto;
}

.phase-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.phase-label {
    text-align: left;
}

.phase-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    line-height: 1;
}

.phase-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-card-bg);
    /* Muted green/gray */
    line-height: 1;
    text-transform: uppercase;
}

.phase-card {
    background: #15191b;
    /* Slightly lighter than bg */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.phase-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.phase-content h4 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-content p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.0rem;
    color: var(--color-white);
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .phase-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .phase-label {
        display: flex;
        align-items: baseline;
        gap: 1rem;
    }

    .phase-num {
        font-size: 1.5rem;
    }

    .phase-name {
        font-size: 2rem;
    }

    .pipeline-flow {
        font-size: 1rem;
    }
}

/* What You Get (WYG) Section */
.wyg-header {
    margin-bottom: var(--spacing-lg);
}

.highlight-text {
    color: var(--color-card-bg);
    /* Muted green */
    font-style: italic;
}

.light-section .highlight-text {
    color: var(--color-dark-text);
    opacity: 0.7;
}

.wyg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.wyg-card {
    background: transparent;
    text-align: left;
}

.wyg-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a2224;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.wyg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.wyg-card:hover .wyg-img img {
    transform: scale(1.05);
    opacity: 1;
}

.wyg-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.light-section .wyg-card h3 {
    color: var(--color-dark-text);
}

.wyg-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.light-section .wyg-card p {
    color: var(--color-dark-text);
    opacity: 0.8;
}

/* Separator Line */
.section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--spacing-xl) 0;
}

.light-section .section-divider {
    background: rgba(42, 55, 58, 0.2);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Fix for pricing card hover conflict with animation */
.pricing-card.visible:hover {
    transform: translateY(-10px);
}

.pricing-card.featured.visible:hover {
    transform: scale(1.08) translateY(-5px);
}

/* Who Is This For Section */
.who-is-this-for {
    background-color: #0f1213;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 5;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fit-card {
    background: #1a2224;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 100%;
}

.fit-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.fit-list {
    list-style: none;
    padding: 0;
}

.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fit-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
    font-size: 0.9rem;
}

.success-card .fit-icon {
    background: var(--color-accent);
    color: var(--color-bg);
}

.warning-card .fit-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.fit-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.fit-text strong {
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    display: inline;
}

.warning-card {
    background: transparent;
    border: none;
    padding-left: 0;
}

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }

    .fit-card {
        padding: 2rem 1.5rem;
    }

    .warning-card {
        padding-left: 1.5rem;
    }

    .fit-card h3 {
        font-size: 1.8rem;
    }
}

/* Mobile Menu & Responsive Enhancements */
body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 140px;
        /* Increase padding to clear fixed navbar */
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .wyg-grid,
    .toolkit-grid {
        grid-template-columns: 1fr;
    }

    .pipeline-flow {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pipeline-flow .arrow {
        transform: rotate(90deg);
    }

    /* Curriculum Roadmap Mobile Fixes */
    .roadmap-item,
    .roadmap-item.right {
        flex-direction: column;
        padding-left: 80px;
        align-items: flex-start;
    }

    .roadmap-content,
    .roadmap-item.right .roadmap-content {
        order: 1;
        padding: 0;
        text-align: left;
        width: 100%;
    }

    .roadmap-image,
    .roadmap-item.right .roadmap-image {
        position: relative;
        order: 2;
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
        left: auto;
        right: auto;
        padding: 0;
    }

    .roadmap-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: 30px;
        border-width: 2px;
    }

    .roadmap-line {
        left: 30px;
    }

    /* Fix specificity issue for non-right items */
    .roadmap-item:not(.right) .roadmap-image {
        left: auto;
        right: auto;
        padding-left: 0;
    }

    /* Foundational Curriculum Title Mobile */
    .curriculum-header h2 {
        font-size: 2.5rem;
        /* Force smaller size on mobile */
        word-wrap: break-word;
        /* Ensure long words break */
    }

    .curriculum-desc {
        text-align: left;
        margin-top: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-social {
        order: 2;
        gap: 1rem;
        flex: none;
    }

    .footer-logo {
        order: 1;
    }

    .footer-links {
        order: 3;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

}