/* ══════════════════════════════════════════════════════════════
   MAXOPP DIGITAL BUSINESS LAUNCHPAD (DBL) // MASTER PAGE STYLESHEET
   Architectural Editorial Design System for DBL
   ══════════════════════════════════════════════════════════════ */





/* ── 3. UNBOXED STATS SECTION ── */
.stats-unboxed-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    box-sizing: border-box;
}

.unboxed-narrative {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.unboxed-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.unboxed-badge-dash {
    width: 16px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
}

.unboxed-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--brand-black);
    margin: 0;
}



.unboxed-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #475569;
    max-width: 480px;
    margin: 0;
    text-wrap: pretty;
}

.unboxed-grid-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03);
}

.unboxed-matrix-cell {
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff;
}

.border-r {
    border-right: 1.5px solid var(--brand-border);
}

.border-b {
    border-bottom: 1.5px solid var(--brand-border);
}

.unboxed-stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tone-orange {
    color: var(--brand-orange);
}

.tone-magenta {
    color: var(--brand-magenta);
}

.unboxed-stat-label {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
}

/* ── 4. 3 BUSINESS MODELS SECTION ── */
.programs-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    box-sizing: border-box;
}

.programs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 40px;
}

.dossier-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
}

.dossier-lead-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #475569;
    max-width: 480px;
    margin: 0;
    text-align: left;
    text-wrap: pretty;
}

.dbl-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.dbl-model-card {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.dbl-model-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 48px rgba(239, 129, 26, 0.12);
}

.dbl-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
}

.dbl-model-card.model-orange:hover::before {
    background: var(--brand-orange);
}

.dbl-model-card.model-dark:nth-child(2):hover::before {
    background: var(--brand-magenta);
}

.dbl-model-card.model-dark:nth-child(3):hover::before {
    background: #0284c7;
}

.dbl-model-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dbl-model-index {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
}

.dbl-model-discipline {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--brand-border);
}

.dbl-model-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 4px 0 0 0;
    letter-spacing: -0.04em;
}

.num-orange {
    color: var(--brand-orange);
}

.num-magenta {
    color: var(--brand-magenta);
}

.num-blue {
    color: #0284c7;
}

.dbl-model-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-black);
    letter-spacing: -0.02em;
    margin: 0;
}

.dbl-model-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.dbl-model-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
}

.dbl-chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    background: #f8fafc;
    border: 1px solid var(--brand-border);
    padding: 5px 12px;
    border-radius: 100px;
    color: #334155;
}

/* ── 5. DOSSIER MATRIX COMPONENT (ROADMAP, JOIN, OUTCOMES, STORIES) ── */
.mentors-dossier-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    box-sizing: border-box;
}

.dossier-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 38px;
    gap: 32px;
}

.dossier-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--brand-orange);
    text-transform: uppercase;
    margin-bottom: 12px;
    background: #fff7ed;
    border: 1px solid rgba(239, 129, 26, 0.25);
    padding: 5px 12px;
    border-radius: 100px;
}

.dossier-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 8px var(--brand-orange);
}

/* ══════════════════════════════════════════════════════════════
   3. THE 11 MONTH BUILDER ROADMAP (EXPONENTIAL PROGRESSION)
   ══════════════════════════════════════════════════════════════ */
.roadmap-header-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    margin-bottom: 52px;
}

.roadmap-header-title-col {
    display: flex;
    flex-direction: column;
}

.roadmap-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
}

.roadmap-header-desc-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roadmap-lead-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

.roadmap-quick-metrics {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid var(--brand-border);
    padding: 8px 16px;
    border-radius: 100px;
    width: fit-content;
    flex-wrap: wrap;
}

.roadmap-quick-metrics strong {
    color: var(--brand-black);
    font-weight: 800;
}

.quick-metric-dot {
    color: var(--brand-orange);
}

/* ── TIMELINE STACK & GUTTER RAIL (11 MONTH PROGRESSION) ── */
.timeline-section-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 140px auto;
    box-sizing: border-box;
    position: relative;
}

.timeline-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
}

.timeline-header-row .dossier-headline {
    margin-bottom: 0;
}

.timeline-header-meta {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.timeline-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-black);
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    padding: 5px 12px;
    border-radius: 100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.timeline-stack-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* External Timeline Rail */
.gutter-timeline-rail {
    position: absolute;
    left: -44px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.gutter-timeline-fill {
    position: absolute;
    left: -44px;
    top: 40px;
    width: 2px;
    height: 0%;
    background: var(--brand-orange);
    z-index: 2;
    box-shadow: 0 0 10px rgba(239, 129, 26, 0.4);
    transition: height 0.08s linear;
}

.gutter-timeline-head {
    position: absolute;
    left: -49px;
    top: 40px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid var(--brand-orange);
    box-shadow: 0 0 12px rgba(239, 129, 26, 0.6);
    z-index: 3;
    pointer-events: none;
    transition: top 0.08s linear;
}

/* Gutter Node Marker Dots */
.gutter-node-dot {
    position: absolute;
    left: -53px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 900;
    color: #64748b;
    cursor: pointer;
    z-index: 4;
    transition: all 0.25s ease;
    text-decoration: none;
}

.gutter-node-dot:hover,
.gutter-node-dot.is-active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff;
    transform: scale(1.25);
    box-shadow: 0 0 0 4px rgba(239, 129, 26, 0.15);
}

/* ── Individual Stage Card (100% Flush Left) ── */
.timeline-card {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    padding: 40px 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.25s var(--ease-out);
    position: relative;
    box-sizing: border-box;
}

.timeline-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.timeline-card.is-active-phase {
    border-color: var(--brand-border);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

/* Top Bar */
.card-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1.5px solid var(--brand-border);
    margin-bottom: 24px;
}

.card-phase-tag {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-phase-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-orange);
}

.card-duration-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Heading & Lead */
.card-main-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-main-lead {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    max-width: 820px;
    margin-bottom: 28px;
}

/* Asymmetric 2-Column Split */
.card-inner-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    align-items: center;
}

/* Left: Weekly Sprints & Capstone Strip */
.sprints-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sprint-row-item {
    background: #f8fafc;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: baseline;
    transition: all 0.2s ease;
}

.sprint-row-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sprint-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--brand-black);
    background: #ffffff;
    border: 1px solid var(--brand-border);
    padding: 2px 5px;
    border-radius: 4px;
    text-align: center;
}

.sprint-row-item:hover .sprint-num {
    background: var(--brand-black);
    color: #ffffff;
    border-color: var(--brand-black);
}

.sprint-text strong {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--brand-black);
    display: block;
    margin-bottom: 2px;
}

.sprint-text p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Capstone Summary Banner below sprints */
.sprint-capstone-footer {
    margin-top: 4px;
    background: #ffffff;
    border: 1px dashed var(--brand-border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cap-footer-title {
    font-family: var(--font-head);
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--brand-black);
}

.cap-footer-status {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #059669;
    white-space: nowrap;
}

/* Right: Clean Media Frame */
.card-media-display {
    background: #fdfcfb;
    border: 1.5px solid var(--brand-border);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.card-media-display:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.card-media-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.35s var(--ease-out);
}

.card-media-display:hover img {
    transform: scale(1.03);
}

@media (max-width: 1440px) {
    .gutter-timeline-rail, .gutter-timeline-fill, .gutter-timeline-head, .gutter-node-dot {
        display: none;
    }
}

@media (max-width: 1024px) {
    .timeline-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .card-inner-grid { grid-template-columns: 1fr; }
    .timeline-card { padding: 28px 24px; }
}

/* Bottom Master Trust Strip */
.roadmap-trust-strip {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.trust-strip-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #10b981;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.pulse-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
}

.trust-points-list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-point {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #475569;
}

.trust-brand-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
}

/* ── GENERIC DOSSIER MATRIX (JOIN, STORIES, ETC.) ── */
.dossier-monolith-matrix {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.dossier-matrix-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    background: #f8fafc;
    border-bottom: 1.5px solid var(--brand-border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #64748b;
    text-transform: uppercase;
}

.dossier-utility-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eaf8f0;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dossier-pulse-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
}

.dossier-grid-stage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--brand-border);
    gap: 1.5px;
}

/* 6-Profile Who Should Join -> 3 Columns x 2 Rows */
#join .dossier-grid-stage {
    grid-template-columns: repeat(3, 1fr);
}

/* 4-Story Student Stories -> 2 Columns x 2 Rows */
#stories .dossier-grid-stage {
    grid-template-columns: repeat(2, 1fr);
}

.dossier-cell {
    background: #ffffff;
    padding: 34px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-height: auto;
    box-sizing: border-box;
}

.dossier-cell:hover {
    background: #fafbfd;
}

.dossier-cell-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dossier-cell-index {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dossier-cell-discipline {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dossier-cell-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dossier-cell-name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-black);
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.dossier-cell-venture {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.dbl-audience-item {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-black);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.dossier-cell-copy {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px 0;
}

.dbl-cell-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.dossier-cell-outcome {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    border: 1px solid rgba(239, 129, 26, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin-top: auto;
    width: fit-content;
}

.outcome-icon {
    color: var(--brand-orange);
}

.dossier-matrix-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    background: #ffffff;
    border-top: 1.5px solid var(--brand-border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #64748b;
    text-transform: uppercase;
}

.dossier-footer-points {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.dossier-footer-point {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
}

.footer-point-icon {
    color: #10b981;
}

/* ══════════════════════════════════════════════════════════════
   6. THE OPERATOR STACK & IMMERSION COMMAND TERMINAL
   ══════════════════════════════════════════════════════════════ */
.stack-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    box-sizing: border-box;
}

.stack-command-terminal {
    width: 100%;
    background: #07090e;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(239, 129, 26, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(201, 36, 96, 0.12) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px;
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 52px 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.terminal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
}

.terminal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(239, 129, 26, 0.12);
    border: 1px solid rgba(239, 129, 26, 0.3);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--brand-orange);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.terminal-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 10px var(--brand-orange);
}

.terminal-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.terminal-headline-glow {
    background: linear-gradient(120deg, #FFB03A 0%, #FF6500 40%, #FF246A 75%, #FF8500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.terminal-desc {
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
    max-width: 640px;
}

.terminal-telemetry-pod {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    flex-shrink: 0;
}

.telemetry-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.telemetry-tag {
    color: #64748b;
}

.telemetry-val {
    color: #ffffff;
    font-weight: 800;
}

.telemetry-val.val-green {
    color: #10b981;
}

.telemetry-val.val-orange {
    color: var(--brand-orange);
}

/* Embedded Dark Marquee */
.terminal-marquee-strip {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 6px 0;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.terminal-marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.terminal-track {
    display: flex;
    width: max-content;
}

.terminal-scroll-left {
    animation: termLeft 34s linear infinite;
}

.terminal-scroll-right {
    animation: termRight 34s linear infinite;
}

.terminal-track:hover {
    animation-play-state: paused;
}

.terminal-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
}

.term-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 9px 16px;
    font-family: var(--font-head);
    font-size: 0.84rem;
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: default;
}

.term-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(239, 129, 26, 0.25);
}

.term-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes termLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes termRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════════
   6. THE OPERATOR STACK · ASYMMETRICAL STUDIO COCKPIT & TELEMETRY BAYS
   ══════════════════════════════════════════════════════════════ */
.studio-cockpit-spread {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 24px;
    margin-top: 16px;
    align-items: stretch;
}

.studio-master-window {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    background: #090d16;
}

.studio-master-window .immersion-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-master-window:hover .immersion-bg-img {
    transform: scale(1.04);
}

.studio-master-window .immersion-gradient-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.25) 0%, rgba(7, 9, 14, 0.6) 45%, rgba(7, 9, 14, 0.95) 90%);
    z-index: 2;
}

.studio-master-top {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.immersion-gps-tag {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.08em;
}

.immersion-badge-glow {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
    background: rgba(239, 129, 26, 0.22);
    border: 1px solid rgba(239, 129, 26, 0.45);
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.studio-master-hud {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 24px 28px;
}

.studio-master-stat-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.studio-master-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.studio-master-stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.studio-master-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.studio-master-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

/* Stacked Right Telemetry Consoles */
.studio-telemetry-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.studio-telemetry-console {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    flex: 1;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.studio-telemetry-console:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(239, 129, 26, 0.5);
    transform: translateY(-3px);
}

.console-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-track-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
}

.console-pill {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.console-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.console-desc {
    font-family: var(--font-body);
    font-size: 0.86rem;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0;
}

.console-footer-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.console-check-icon {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 900;
}

.console-foot-text {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   7. WHO SHOULD JOIN // DUAL CHAPTER ARCHETYPES (BRAND & OPERATOR)
   ══════════════════════════════════════════════════════════════ */
.archetypes-master-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 140px auto;
    box-sizing: border-box;
}

.archetypes-header-center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.archetypes-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
}

.archetypes-main-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Roster Meta Indicator Strip */
.roster-meta-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
}

.roster-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #334155;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.roster-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.roster-meta-dot.dot-orange {
    background: var(--brand-orange);
    box-shadow: 0 0 8px var(--brand-orange);
}

.roster-meta-dot.dot-magenta {
    background: var(--brand-magenta);
    box-shadow: 0 0 8px var(--brand-magenta);
}

.roster-meta-dot.dot-green {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

/* ── VISUAL ARCHETYPE GRID: 6-PANEL EDITORIAL DOSSIER ── */
.archetypes-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.arch-visual-card {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.arch-visual-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 45px rgba(239, 129, 26, 0.12);
}

/* Media Window with Real Documentary Photo */
.arch-visual-media {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #090d16;
}

.arch-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-visual-card:hover .arch-visual-img {
    transform: scale(1.06);
}

.arch-visual-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.35) 0%, rgba(7, 9, 14, 0.1) 40%, rgba(7, 9, 14, 0.88) 100%);
    z-index: 1;
}

.arch-visual-topchips {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.arch-chip-num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.arch-chip-target {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
}

.target-orange {
    color: #ffffff;
    background: var(--brand-orange);
    box-shadow: 0 2px 10px rgba(239, 129, 26, 0.4);
}

.target-green {
    color: #ffffff;
    background: #16a34a;
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.35);
}

.target-blue {
    color: #ffffff;
    background: #0284c7;
    box-shadow: 0 2px 10px rgba(2, 132, 199, 0.35);
}

.target-magenta {
    color: #ffffff;
    background: var(--brand-magenta);
    box-shadow: 0 2px 10px rgba(201, 36, 96, 0.4);
}

.arch-visual-footlabel {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Card Body Content */
.arch-visual-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
}

.arch-visual-header {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.arch-visual-title {
    font-family: var(--font-head);
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.arch-visual-sub {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.04em;
}

.arch-visual-premise {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.58;
    color: #475569;
    margin: 0;
    flex: 1;
}

/* Spec Callout Box */
.arch-visual-specbox {
    background: #f8fafc;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 11px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.arch-visual-card:hover .arch-visual-specbox {
    background: #fffcf8;
    border-color: #fed7aa;
}

.arch-spec-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.4;
}

.spec-tag-base {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #94a3b8;
    text-transform: uppercase;
    flex-shrink: 0;
    width: 76px;
}

.spec-desc-base {
    font-family: var(--font-body);
    color: #64748b;
}

.spec-tag-live {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--brand-orange);
    text-transform: uppercase;
    flex-shrink: 0;
    width: 76px;
}

.spec-desc-live {
    font-family: var(--font-body);
    font-weight: 600;
    color: #1e293b;
}

/* Card Footer */
.arch-visual-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1.5px dashed var(--brand-border);
    gap: 8px;
}

.arch-discipline-badge {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.arch-tools-chain {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arch-tools-chain span {
    color: #334155;
}

/* ── MASTER ADMISSIONS ACTION RUNWAY ── */
.roster-pathway-bar {
    margin-top: 24px;
    background: #090d16;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.pathway-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 820px;
}

.pathway-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pathway-lead {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.pathway-lead strong {
    color: #ffffff;
}

.pathway-btn {
    flex-shrink: 0;
    padding: 13px 24px;
    font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════
   8. CAREER OUTCOMES: UNIFIED ARCHITECTURAL HORIZON CONSOLE
   ══════════════════════════════════════════════════════════════ */
.outcomes-horizon-bar {
    background: #090d16;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px 36px;
    display: grid;
    grid-template-columns: 1fr auto 1.3fr auto 0.85fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.horizon-bar-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.horizon-bar-tag {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #94a3b8;
    text-transform: uppercase;
}

.horizon-bar-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.horizon-bar-num.highlight-orange {
    color: var(--brand-orange);
}

.horizon-bar-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #94a3b8;
}

.horizon-bar-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
}

.horizon-delta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(239, 129, 26, 0.18);
    border: 1px solid rgba(239, 129, 26, 0.4);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--brand-orange);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* Unified 3-Lane Console Monolith */
.outcomes-unified-console {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    box-sizing: border-box;
}

.outcomes-unified-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-magenta));
}

.console-lane {
    padding: 44px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-right: 1.5px solid var(--brand-border);
    background: #ffffff;
    transition: background 0.25s ease;
    box-sizing: border-box;
}

.console-lane:last-child {
    border-right: none;
}

.console-lane.lane-featured {
    background: #fffbf6;
}

.console-lane:hover {
    background: #f8fafc;
}

.console-lane.lane-featured:hover {
    background: #fff8f0;
}

.lane-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lane-code {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
}

.lane-status-badge {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.lane-status-badge.status-green {
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.lane-status-badge.status-orange {
    color: #ffffff;
    background: var(--brand-orange);
    border: 1px solid var(--brand-orange);
}

.lane-status-badge.status-blue {
    color: #0284c7;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
}

.lane-metric-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid var(--brand-border);
}

.lane-metric-figure {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.6vw, 2.7rem);
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.lane-metric-figure.text-orange {
    color: var(--brand-orange);
}

.lane-metric-caption {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.06em;
}

.lane-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-black);
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}

.lane-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    flex: 1;
}

.lane-proof-callout {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lane-proof-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #10b981;
    text-transform: uppercase;
}

.lane-proof-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

.lane-tools-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 14px;
    border-top: 1.5px dashed var(--brand-border);
}

.pillar-tool-pill {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    padding: 4px 10px;
    border-radius: 6px;
}

/* ══════════════════════════════════════════════════════════════
   9. STUDENT SUCCESS STORIES // AUDITED PROOF DOSSIERS
   ══════════════════════════════════════════════════════════════ */
.master-dossier-spread {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    margin-bottom: 24px;
    position: relative;
    box-sizing: border-box;
}

.master-dossier-spread::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-magenta));
}

.dossier-left-editorial {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1.5px solid var(--brand-border);
    box-sizing: border-box;
}

.dossier-stamp-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.dossier-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
}

.dossier-case-slug {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.08em;
}

.dossier-headline-stat {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 4.2vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--brand-black);
    line-height: 1;
    margin: 0 0 6px 0;
}

.dossier-stat-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--brand-orange);
    text-transform: uppercase;
    margin-bottom: 22px;
    display: block;
}

.dossier-quote-text {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.68;
    color: #334155;
    font-style: italic;
    margin: 0 0 24px 0;
    border-left: 3px solid var(--brand-orange);
    padding-left: 18px;
}

.dossier-founder-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.dossier-founder-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-orange);
    flex-shrink: 0;
}

.dossier-founder-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0 0 2px 0;
}

.dossier-founder-role {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
}

.dossier-milestone-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    border-top: 1.5px solid var(--brand-border);
}

.dossier-step {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.d-step-time {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--brand-orange);
}

.d-step-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
}

.dossier-step.active-step .d-step-title {
    color: var(--brand-black);
    font-weight: 800;
}

.dossier-step-arrow {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Right Side: Media & Clean Telemetry */
.dossier-right-media {
    background: #f8fafc;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.dossier-photo-container {
    position: relative;
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--brand-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dossier-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dossier-img-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(9, 13, 22, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.06em;
}

.dossier-telemetry-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.telemetry-box {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.t-box-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.t-box-val {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--brand-black);
}

.t-box-val.val-orange {
    color: var(--brand-orange);
}

.t-box-val.val-green {
    color: #10b981;
}

/* ── 9. STUDENT SUCCESS STORIES: AUDITED FIELD TICKER (NO CARDS) ── */
.operator-field-ticker {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    width: 100%;
    box-sizing: border-box;
}

.field-ticker-item {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1.5px solid var(--brand-border);
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.field-ticker-item:last-child {
    border-right: none;
}

.field-ticker-item:hover {
    background: #f8fafc;
}

.ticker-item-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ticker-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 1.5px solid var(--brand-border);
    flex-shrink: 0;
}

.ticker-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.ticker-author-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0;
}

.ticker-track-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.06em;
}

.ticker-metric-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 900;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    letter-spacing: 0.04em;
}

.ticker-quote {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.58;
    color: #475569;
    margin: 0;
    flex: 1;
}

.ticker-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    border-top: 1.5px dashed var(--brand-border);
}

.t-badge {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--brand-border);
}

/* ══════════════════════════════════════════════════════════════
   10. ENROL: MASTER OBSIDIAN ADMISSIONS TERMINAL
   ══════════════════════════════════════════════════════════════ */
.enrol-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    box-sizing: border-box;
}

.enrol-monolith {
    width: 100%;
    background: #05070a;
    background-image:
        radial-gradient(ellipse at 15% 30%, rgba(239, 129, 26, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(201, 36, 96, 0.15) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    border-radius: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: stretch;
}

.enrol-pane {
    display: flex;
    flex-direction: column;
}

.enrol-glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    width: fit-content;
}

.enrol-glass-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 10px var(--brand-orange);
}

.enrol-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.editorial-glass-title-white {
    color: #ffffff;
    display: inline-block;
}

.editorial-glass-highlight {
    background: linear-gradient(120deg, #FFB03A 0%, #FF6500 35%, #FF246A 70%, #FF8500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.enrol-desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0 0 28px 0;
}

.enrol-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.enrol-fact-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.enrol-fact-key {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.enrol-fact-val {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.enrol-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.enrol-guarantee-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: #e2e8f0;
}

.enrol-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 0.72rem;
    font-weight: 900;
    flex-shrink: 0;
}

.enrol-direct-call-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    margin-top: auto;
}

.enrol-call-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.enrol-phone-link {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--brand-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.enrol-phone-link:hover {
    color: #ff9d42;
    text-decoration: underline;
}

/* Enrol Form Card */
.enrol-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.form-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
}

.form-card-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

.form-card-sub {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0 0 22px 0;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field-group label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #cbd5e1;
    text-transform: uppercase;
}

.field-group input,
.field-group select {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: #ffffff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.field-group input:focus,
.field-group select:focus {
    border-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.14);
}

.field-group input::placeholder {
    color: #64748b;
}

.field-group select option {
    background: #0f172a;
    color: #ffffff;
}

.w-full {
    width: 100%;
}

.form-privacy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    margin: 12px 0 0 0;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 10px;
    gap: 12px;
}

.form-success.hidden {
    display: none !important;
}

.success-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.form-success p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   11. FAQ SECTION (ACCORDION & HOTLINE)
   ══════════════════════════════════════════════════════════════ */
.faq-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.faq-header-block {
    text-align: center;
    margin-bottom: 48px;
}

.faq-badge {
    justify-content: center;
    margin-bottom: 12px;
}

.faq-headline {
    margin: 0;
}

.faq-monolith {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-drawer {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-drawer:hover {
    border-color: rgba(239, 129, 26, 0.35);
    box-shadow: 0 8px 24px rgba(239, 129, 26, 0.06);
}

.faq-drawer[open] {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 28px rgba(239, 129, 26, 0.1);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    gap: 16px;
}

.faq-trigger::-webkit-details-marker {
    display: none;
}

.faq-trigger-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-q-number {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
}

.faq-q-text {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--brand-black);
    letter-spacing: -0.01em;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, background-color 0.2s ease;
    position: relative;
}

.faq-chevron::before,
.faq-chevron::after {
    content: '';
    position: absolute;
    background: #475569;
    transition: transform 0.25s ease;
}

.faq-chevron::before {
    width: 10px;
    height: 2px;
}

.faq-chevron::after {
    width: 2px;
    height: 10px;
}

.faq-drawer[open] .faq-chevron {
    background: #fff7ed;
    border-color: rgba(239, 129, 26, 0.3);
}

.faq-drawer[open] .faq-chevron::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-drawer[open] .faq-chevron::before {
    background: var(--brand-orange);
}

.faq-answer {
    padding: 0 26px 24px 54px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.68;
    color: #475569;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 700;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Bottom Consultation Card */
.faq-hotline-card {
    width: 100%;
    max-width: 900px;
    margin-top: 32px;
    background: #f8fafc;
    border: 1.5px dashed var(--brand-border);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.faq-hotline-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-hotline-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0;
}

.faq-hotline-sub {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

.faq-hotline-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-hotline-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--brand-black);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hotline-call:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   12. RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .stats-unboxed-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dbl-model-grid {
        grid-template-columns: 1fr;
    }

    .terminal-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .studio-cockpit-spread {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .studio-master-window {
        min-height: 420px;
    }

    .archetypes-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .roster-pathway-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .pathway-btn {
        width: 100%;
        justify-content: center;
    }

    .outcomes-horizon-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .horizon-bar-divider {
        display: none;
    }

    .outcomes-unified-console {
        grid-template-columns: 1fr;
    }

    .console-lane {
        border-right: none;
        border-bottom: 1.5px solid var(--brand-border);
        padding: 32px 24px;
    }

    .console-lane:last-child {
        border-bottom: none;
    }

    .master-dossier-spread {
        grid-template-columns: 1fr;
    }

    .dossier-left-editorial {
        border-right: none;
        border-bottom: 1.5px solid var(--brand-border);
        padding: 36px 28px;
    }

    .dossier-right-media {
        padding: 28px 24px;
    }

    .operator-field-ticker {
        grid-template-columns: 1fr;
    }

    .field-ticker-item {
        border-right: none;
        border-bottom: 1.5px solid var(--brand-border);
        padding: 24px 20px;
    }

    .field-ticker-item:last-child {
        border-bottom: none;
    }

    .enrol-monolith {
        grid-template-columns: 1fr;
        padding: 44px 28px;
        gap: 40px;
    }

    .faq-hotline-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-hotline-actions {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .roadmap-header-wrapper {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 28px !important;
    }

    .dbl-model-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .timeline-card {
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }

    .card-inner-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .enrol-monolith {
        grid-template-columns: 1fr !important;
        padding: 28px 18px !important;
        gap: 24px !important;
        border-radius: 20px !important;
    }

    .enrol-form-card {
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }

    .stack-command-terminal {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .studio-master-window {
        min-height: 360px;
        padding: 20px;
    }

    .studio-master-hud {
        padding: 18px 20px;
    }

    .archetypes-visual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .arch-visual-media {
        height: 170px;
    }

    .arch-visual-body {
        padding: 20px;
    }

    .arch-visual-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .roster-pathway-bar {
        padding: 20px;
    }

    .dossier-milestone-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dossier-step-arrow {
        transform: rotate(90deg);
        margin: 0 0 0 6px;
    }

    .dossier-telemetry-strip {
        grid-template-columns: 1fr;
    }

    .enrol-facts-grid {
        grid-template-columns: 1fr;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-trigger-left {
        gap: 10px;
    }

    .faq-q-text {
        font-size: 1rem;
    }
}