/* ============================================
   CAREERS PAGE — N.Sani Design System
   BEM prefix: cr-
   ============================================ */

/* ============================================
   1. LIFE HERO — Full-Width Typography
   ============================================ */
.cr-life-hero {
    position: relative;
    padding: clamp(140px, 16vh, 200px) 0 clamp(80px, 10vh, 140px);
    background: #fafaf8;
    overflow: hidden;
}

.cr-life-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(10, 17, 25, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 25, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(10, 17, 25, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 25, 0.015) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    pointer-events: none;
}

.cr-life-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
}

.cr-life-hero__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.3em;
    left: -0.05em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.cr-life-hero__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.cr-life-hero__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-text-primary);
}

.cr-life-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.cr-life-hero__title {
    margin-bottom: var(--space-6);
}

.cr-life-hero__title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--color-text-primary);
}

.cr-life-hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.cr-life-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 50%;
}

/* ============================================
   2. EMPLOYEE PROFILES — Blueprint Grid
   ============================================ */
.cr-profiles {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    background: #1a1814;
    overflow: hidden;
}

.cr-profiles__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cr-profiles__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
}

.cr-profiles__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-pure-white);
    margin-bottom: clamp(48px, 6vw, 80px);
}

.cr-profiles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.cr-profiles__card {
    background: #fff;
    border-radius: clamp(12px, 1.5vw, 20px);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-profiles__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.cr-profiles__card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.cr-profiles__card-body {
    padding: clamp(16px, 2vw, 24px);
}

.cr-profiles__card-name {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.cr-profiles__card-title {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

/* ============================================
   3. HUB HERO — Massive Centered Typography
   ============================================ */
.cr-hub-hero {
    padding: clamp(100px, 14vw, 200px) 0;
    background: #fafaf8;
    text-align: center;
}

.cr-hub-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-hub-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-8);
}

.cr-hub-hero__title-script {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.cr-hub-hero__title-script::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: clamp(10px, 1.2vw, 16px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'%3E%3Cpath d='M 4,8 C 50,3 130,2 200,6 C 270,10 350,8 396,5 C 350,11 270,15 200,12 C 130,9 50,12 4,13 Z' fill='%23FF1A0F' opacity='0.92'/%3E%3Cpath d='M 12,10 C 70,7 150,6 210,9 C 270,12 360,10 390,8' stroke='%23FF1A0F' stroke-width='1' fill='none' opacity='0.45' stroke-linecap='round'/%3E%3C/svg%3E");
}

.cr-hub-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

.cr-hub-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-hub-hero__cta:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cr-hub-hero__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-hub-hero__cta:hover .cr-hub-hero__cta-arrow {
    transform: translateX(3px);
}

/* ============================================
   4. CAREER TRACKS — 3-Column Cards
   ============================================ */
.cr-tracks {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #F5F5F5;
}

.cr-tracks__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-tracks__header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.cr-tracks__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.cr-tracks__desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    max-width: 600px;
}

.cr-tracks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.cr-tracks__card {
    background: #fafaf8;
    border: 0.5px solid #c8c8c8;
    border-radius: 4px;
    padding: clamp(32px, 3.5vw, 48px);
    transition: all var(--duration-base) var(--ease-out);
    position: relative;
    overflow: hidden;
}
/* Tick marks — matches about us stat cards */
.cr-tracks__card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg, #bbb 0px, #bbb 1px, transparent 1px, transparent 36px) 0 0 / 100% 5px no-repeat,
        repeating-linear-gradient(90deg, #bbb 0px, #bbb 1px, transparent 1px, transparent 36px) 0 100% / 100% 5px no-repeat;
}

.cr-tracks__card:hover {
    border-color: var(--color-text-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.cr-tracks__card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: var(--space-3);
}

.cr-tracks__card-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.cr-tracks__card-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cr-tracks__card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: gap var(--duration-base) var(--ease-out);
}

.cr-tracks__card-link:hover {
    gap: var(--space-3);
}

.cr-tracks__card-link-arrow {
    font-size: 0.9rem;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-tracks__card-link:hover .cr-tracks__card-link-arrow {
    transform: translateX(2px);
}

/* ============================================
   5. BENEFITS — Category Accordion + Grid
   ============================================ */
.cr-benefits {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #F5F5F5;
}

.cr-benefits__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-benefits__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: clamp(48px, 6vw, 80px);
    max-width: 600px;
}

.cr-benefits__category {
    border-bottom: 1px solid rgba(10, 17, 25, 0.1);
}

.cr-benefits__category-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: clamp(20px, 2.5vw, 28px) 0;
    background: none; border: none; cursor: pointer;
    text-align: left;
}

.cr-benefits__category-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 600;
    color: var(--color-text-primary);
}

.cr-benefits__category-chevron {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    transition: transform var(--duration-base) var(--ease-out);
    flex-shrink: 0;
}

.cr-benefits__category-trigger[aria-expanded="true"] .cr-benefits__category-chevron {
    transform: rotate(180deg);
}

.cr-benefits__category-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.cr-benefits__category-trigger[aria-expanded="true"] + .cr-benefits__category-body {
    max-height: 600px;
    padding-bottom: var(--space-8);
}

.cr-benefits__items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(4px, 0.8vw, 10px);
    padding-top: var(--space-2);
}

.cr-benefits__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-2);
}

.cr-benefits__item-icon {
    font-size: 3.5rem;
    color: var(--color-text-secondary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
}

.cr-benefits__item-icon i {
    font-size: 3.5rem !important;
}

.cr-benefits__item-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   6. PROJECTS — Horizontal Scroll Carousel
   ============================================ */
.cr-projects {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #fafaf8;
}

/* Carousel dropped inside the dark .sc-bottom-cta banner — full-width track + invert title/arrows */
.sc-bottom-cta .cr-projects__inner {
    max-width: none;
    padding: 0;
}

.sc-bottom-cta .cr-projects__header {
    max-width: 1600px;
    margin: 0 auto var(--space-8);
    padding: 0 clamp(24px, 4vw, 80px);
}

.sc-bottom-cta .cr-projects__track {
    padding: 0 clamp(24px, 4vw, 80px);
}

.sc-bottom-cta .cr-projects__title {
    color: var(--color-pure-white);
}

.sc-bottom-cta .cr-projects__arrow {
    color: var(--color-pure-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.sc-bottom-cta .cr-projects__arrow:hover {
    background: var(--color-pure-white);
    color: var(--color-text-primary);
    border-color: var(--color-pure-white);
}

.cr-projects__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-projects__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.cr-projects__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--color-text-primary);
}

.cr-projects__nav {
    display: flex; gap: var(--space-2);
}

.cr-projects__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(10, 17, 25, 0.15);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all var(--duration-base) var(--ease-out);
}

.cr-projects__arrow:hover {
    background: var(--color-text-primary);
    color: var(--color-pure-white);
    border-color: var(--color-text-primary);
}

.cr-projects__track {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cr-projects__track::-webkit-scrollbar { display: none; }

/* Architectural drawing sheet cards.
   Outer frame mirrors the indicator-pill family (map popup, project cards,
   contact buttons, tracks cards): 18px radius, 0.5px hairline warm-gray border,
   layered soft shadow, house motion curve on hover lift. */
.cr-projects__card {
    flex: 0 0 340px;
    min-width: 300px;
    scroll-snap-align: start;
    background: var(--color-pure-white);
    border: 0.5px solid #d8d8d4;
    border-radius: 18px;
    box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.22),
                0 2px 6px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: transform 520ms cubic-bezier(0.4, 0, 0.1, 1),
                box-shadow 520ms cubic-bezier(0.4, 0, 0.1, 1);
    position: relative;
    overflow: hidden;
}

.cr-projects__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.28),
                0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Drawing frame with tick marks */
.cr-projects__card-drawing {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #c8c8c8;
}

.cr-projects__card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: all 0.5s var(--ease-out);
}

.cr-projects__card:hover .cr-projects__card-image {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* Tick marks below image */
.cr-projects__card-ticks {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #bbb 0, #bbb 1px,
        transparent 1px, transparent 36px
    );
}

/* Title block area */
.cr-projects__card-body {
    padding: clamp(14px, 1.8vw, 20px);
    position: relative;
}

/* Title block header (sheet + sector) */
.cr-projects__card-title-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 0.5px solid #d0d0cc;
}

.cr-projects__card-sheet {
    font-family: 'Courier New', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.5;
}

.cr-projects__card-sector {
    font-family: 'Courier New', monospace;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.5;
}

.cr-projects__card-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin-bottom: 4px;
}

.cr-projects__card-meta {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    opacity: 0.5;
    margin-bottom: var(--space-3);
}

.cr-projects__card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap var(--duration-base) var(--ease-out);
}

.cr-projects__card-cta:hover {
    gap: var(--space-3);
}

/* ============================================
   7. SECTION DIVIDER
   ============================================ */
.cr-divider {
    padding: clamp(24px, 3vw, 40px) 0;
    background: #F5F5F5;
}

.cr-divider--offwhite {
    background: #fafaf8;
}

.cr-divider__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.cr-divider__line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(10, 17, 25, 0.15) 0,
        rgba(10, 17, 25, 0.15) 4px,
        transparent 4px,
        transparent 8px
    );
}

.cr-divider__label {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.5;
    white-space: nowrap;
}

/* ============================================
   8. STUDENTS HERO — Large Typography
   ============================================ */
.cr-students-hero {
    position: relative;
    padding: clamp(100px, 14vw, 200px) 0;
    background: #fafaf8;
    overflow: hidden;
}

.cr-students-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
}

.cr-students-hero__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.3em;
    right: -0.05em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.cr-students-hero__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.cr-students-hero__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-text-primary);
}

.cr-students-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.cr-students-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
    max-width: 800px;
}

.cr-students-hero__tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.cr-students-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: var(--space-8);
}

.cr-students-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-students-hero__cta:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cr-students-hero__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-students-hero__cta:hover .cr-students-hero__cta-arrow {
    transform: translateX(3px);
}

/* ============================================
   9–11. SPLIT LAYOUT — Reusable Text + Image
   ============================================ */
.cr-split {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #fafaf8;
}

.cr-split--gray {
    background: #F5F5F5;
}

.cr-split__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: center;
}

.cr-split--reverse .cr-split__inner {
    grid-template-columns: 1.2fr 1fr;
}

.cr-split--reverse .cr-split__text {
    order: 2;
}

.cr-split--reverse .cr-split__visual {
    order: 1;
}

.cr-split__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.5px;
}

.cr-split__body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.cr-split__body:last-child {
    margin-bottom: 0;
}

.cr-split__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
    margin-top: var(--space-4);
}

.cr-split__cta:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cr-split__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-split__cta:hover .cr-split__cta-arrow {
    transform: translateX(3px);
}

.cr-split__visual {
    border-radius: clamp(16px, 2vw, 28px);
    overflow: hidden;
}

.cr-split__image {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
    display: block;
}

/* ============================================
   12. TIMELINE — Recruiting Process
   ============================================ */
.cr-timeline {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    background: #1a1814;
    overflow: hidden;
}

.cr-timeline__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cr-timeline__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
}

.cr-timeline__header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.cr-timeline__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-pure-white);
    margin-bottom: var(--space-4);
}

.cr-timeline__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 600px;
}

.cr-timeline__items {
    position: relative;
    padding-left: clamp(80px, 10vw, 140px);
}

.cr-timeline__items::before {
    content: '';
    position: absolute;
    left: clamp(36px, 5vw, 60px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0,
        rgba(255, 255, 255, 0.2) 4px,
        transparent 4px,
        transparent 8px
    );
}

.cr-timeline__item {
    position: relative;
    padding-bottom: clamp(48px, 6vw, 80px);
}

.cr-timeline__item:last-child {
    padding-bottom: 0;
}

.cr-timeline__item-dot {
    position: absolute;
    left: calc(-1 * clamp(80px, 10vw, 140px) + clamp(30px, 4.3vw, 54px));
    top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.cr-timeline__item-label {
    font-family: 'Courier New', monospace;
    font-size: clamp(0.65rem, 0.8vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-3);
}

.cr-timeline__item-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--color-pure-white);
    line-height: 1.15;
    margin-bottom: var(--space-4);
}

.cr-timeline__item-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 500px;
}

/* ============================================
   13. ERG CAROUSEL — Horizontal Scroll
   ============================================ */
.cr-ergs {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #fafaf8;
}

.cr-ergs__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-ergs__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    gap: var(--space-6);
}

.cr-ergs__header-text {
    max-width: 600px;
}

.cr-ergs__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.cr-ergs__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.cr-ergs__nav {
    display: flex; gap: var(--space-2);
    flex-shrink: 0;
}

.cr-ergs__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(10, 17, 25, 0.15);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all var(--duration-base) var(--ease-out);
}

.cr-ergs__arrow:hover {
    background: var(--color-text-primary);
    color: var(--color-pure-white);
    border-color: var(--color-text-primary);
}

.cr-ergs__track {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cr-ergs__track::-webkit-scrollbar { display: none; }

.cr-ergs__card {
    flex: 0 0 320px;
    min-width: 280px;
    scroll-snap-align: start;
    background: #fff;
    border: 1.5px solid rgba(10, 17, 25, 0.08);
    border-radius: clamp(12px, 1.5vw, 20px);
    padding: clamp(24px, 3vw, 36px);
    transition: all var(--duration-base) var(--ease-out);
}

.cr-ergs__card:hover {
    border-color: rgba(10, 17, 25, 0.2);
}

.cr-ergs__card-name {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.cr-ergs__card-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   14. TESTIMONIAL — Full-Width Quote
   ============================================ */
.cr-testimonial {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #fafaf8;
    text-align: center;
}

.cr-testimonial__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-testimonial__quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: var(--space-4);
}

.cr-testimonial__quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-primary);
    margin-bottom: var(--space-8);
    letter-spacing: -0.5px;
}

.cr-testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cr-testimonial__author-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-primary);
}

.cr-testimonial__author-role {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

/* ============================================
   16. EXPERIENCED HERO — Split Text Only
   ============================================ */
.cr-experienced-hero {
    position: relative;
    padding: clamp(100px, 14vw, 200px) 0;
    background: #fafaf8;
    overflow: hidden;
}

.cr-experienced-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
}

.cr-experienced-hero__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.cr-experienced-hero__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-text-primary);
}

.cr-experienced-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.cr-experienced-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
    max-width: 800px;
}

.cr-experienced-hero__body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: var(--space-8);
}

.cr-experienced-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-experienced-hero__cta:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cr-experienced-hero__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-experienced-hero__cta:hover .cr-experienced-hero__cta-arrow {
    transform: translateX(3px);
}

/* ============================================
   17. JOB FAMILIES — Sticky Split Accordion
   ============================================ */
.cr-job-families {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #F5F5F5;
}

.cr-job-families__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(48px, 6vw, 100px);
}

.cr-job-families__sticky {
    position: sticky;
    top: 120px;
}

.cr-job-families__label-line {
    display: block;
    width: 40px; height: 2px;
    background: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.cr-job-families__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.cr-job-families__desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

/* Accordion — shared cr-accordion for careers */
.cr-accordion {
    border-bottom: 1px solid rgba(10, 17, 25, 0.1);
}

.cr-accordion__trigger {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    width: 100%;
    padding: clamp(20px, 2.5vw, 28px) 0 clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
    background: none; border: none; cursor: pointer;
    text-align: left;
}

.cr-accordion__number {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 300;
    color: var(--color-text-secondary);
    opacity: 0.4;
    min-width: 32px;
}

.cr-accordion__trigger-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 600;
    color: var(--color-text-primary);
    flex: 1;
}

.cr-accordion__icon {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-accordion__trigger[aria-expanded="true"] .cr-accordion__icon {
    transform: rotate(45deg);
}

.cr-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.cr-accordion__trigger[aria-expanded="true"] + .cr-accordion__body {
    max-height: 800px;
    padding-bottom: var(--space-8);
}

.cr-accordion__body p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    padding-left: 48px;
}

.cr-accordion__body .cr-benefits__items-grid {
    padding-left: 48px;
    padding-top: 0;
}

/* Compact accordion for benefits section */
#cr-benefits .cr-accordion__trigger {
    padding: clamp(10px, 1.2vw, 14px) 0 clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 24px);
}
#cr-benefits .cr-accordion__trigger[aria-expanded="true"] + .cr-accordion__body {
    padding-bottom: var(--space-3);
}
/* Students section accordion: larger filled lead icons, tighter bottom spacing */
#cr-students .cr-accordion__lead-icon {
    font-size: 2.4rem;
}
#cr-students .cr-accordion__trigger[aria-expanded="true"] + .cr-accordion__body {
    padding-bottom: var(--space-3);
}
#cr-students .cr-expandables {
    margin-bottom: 0;
}
#cr-students .cr-tabs {
    margin-bottom: var(--space-4);
}
#cr-students.cr-section {
    padding-bottom: clamp(16px, 2vw, 32px);
}
#cr-students .cr-quote-strip {
    padding-top: var(--space-4);
    margin-top: var(--space-4);
}
#cr-students .cr-students-grid {
    margin-bottom: 0;
}
/* Hide the leading number and trailing +/x icon in the benefits accordion */
#cr-benefits .cr-accordion__number,
#cr-benefits .cr-accordion__icon {
    display: none;
}

.cr-accordion__list {
    list-style: none;
    padding: 0 0 0 48px;
    counter-reset: acc-item;
}

.cr-accordion__list li {
    counter-increment: acc-item;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: var(--space-2) 0;
    padding-left: 32px;
    position: relative;
}

.cr-accordion__list li::before {
    content: counter(acc-item, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    opacity: 0.4;
    letter-spacing: 0.05em;
}

/* ============================================
   18. PEOPLE QUOTES — 3-Column Testimonials
   ============================================ */
.cr-people-quotes {
    padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 80px);
    background: transparent;
}

.cr-people-quotes__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 64px);
    background: #fafaf8;
    border-radius: clamp(20px, 2.5vw, 32px);
}

.cr-people-quotes__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: clamp(40px, 5vw, 64px);
}

.cr-people-quotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.cr-people-quotes__card {
    position: relative;
    background: #fafaf8;
    border: 0.5px solid #c8c8c8;
    border-radius: 4px;
    padding: clamp(32px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.cr-people-quotes__card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg, #bbb 0px, #bbb 1px, transparent 1px, transparent 36px) 0 0 / 100% 5px no-repeat,
        repeating-linear-gradient(90deg, #bbb 0px, #bbb 1px, transparent 1px, transparent 36px) 0 100% / 100% 5px no-repeat;
}

.cr-people-quotes__quote-mark {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.cr-people-quotes__quote {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: var(--space-8);
}

.cr-people-quotes__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cr-people-quotes__name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-primary);
}

.cr-people-quotes__role {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

.cr-people-quotes__stamp {
    position: absolute;
    bottom: 16px; right: 16px;
    display: flex; gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 17, 25, 0.15);
}

/* ============================================
   19. PASSION PROJECTS — 3-Column Image Cards
   ============================================ */
.cr-passion {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #fafaf8;
}

.cr-passion__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-passion__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: clamp(48px, 6vw, 80px);
}

.cr-passion__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.cr-passion__card {
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-passion__card:hover {
    transform: translateY(-3px);
}

.cr-passion__card-visual {
    position: relative;
    border-radius: clamp(12px, 1.5vw, 20px);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--space-4);
}

.cr-passion__card-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    display: block;
}

.cr-passion__card:hover .cr-passion__card-image {
    transform: scale(1.04);
}

.cr-passion__card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
    pointer-events: none;
}

.cr-passion__card:hover .cr-passion__card-overlay {
    opacity: 1;
}

.cr-passion__card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.cr-passion__card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: gap var(--duration-base) var(--ease-out);
}

.cr-passion__card:hover .cr-passion__card-cta {
    gap: var(--space-3);
}

/* ============================================
   21. SKILLED HERO — Split (Text + Image)
   ============================================ */
.cr-skilled-hero {
    position: relative;
    padding: clamp(100px, 14vw, 200px) 0;
    background: #fafaf8;
    overflow: hidden;
}

.cr-skilled-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: center;
    position: relative; z-index: 1;
}

.cr-skilled-hero__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.cr-skilled-hero__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-text-primary);
}

.cr-skilled-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.cr-skilled-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.cr-skilled-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: var(--space-8);
}

.cr-skilled-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-skilled-hero__cta:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cr-skilled-hero__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-skilled-hero__cta:hover .cr-skilled-hero__cta-arrow {
    transform: translateX(3px);
}

.cr-skilled-hero__visual {
    border-radius: clamp(16px, 2vw, 28px);
    overflow: hidden;
}

.cr-skilled-hero__image {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
    display: block;
}

/* ============================================
   23. MILITARY HERO — Split (Text + Image)
   ============================================ */
.cr-military-hero {
    position: relative;
    padding: clamp(100px, 14vw, 200px) 0;
    background: #fafaf8;
    overflow: hidden;
}

.cr-military-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: center;
    position: relative; z-index: 1;
}

.cr-military-hero__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.cr-military-hero__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-text-primary);
}

.cr-military-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.cr-military-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.cr-military-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: var(--space-8);
}

.cr-military-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-military-hero__cta:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cr-military-hero__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: transform var(--duration-base) var(--ease-out);
}

.cr-military-hero__cta:hover .cr-military-hero__cta-arrow {
    transform: translateX(3px);
}

.cr-military-hero__visual {
    border-radius: clamp(16px, 2vw, 28px);
    overflow: hidden;
}

.cr-military-hero__image {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
    display: block;
}

/* ============================================
   24. MILITARY ACCORDION — Policy List
   ============================================ */
.cr-military-accordion {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #F5F5F5;
}

.cr-military-accordion__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-military-accordion__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: clamp(40px, 5vw, 64px);
}

/* Uses .cr-accordion for individual items */

/* ============================================
   21b. TRADE SPECIALTIES — Grid
   ============================================ */
.cr-trades-grid {
    padding: 0 0 clamp(80px, 10vw, 140px);
    background: transparent;
}

.cr-trades-grid__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

.cr-trades-grid__heading {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

.cr-trades-grid__list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1vw, 12px);
}

.cr-trades-grid__indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: var(--color-text-primary);
    border-radius: 100px;
    transform: translate(0, 0);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: transform 520ms cubic-bezier(0.4, 0, 0.1, 1),
                width 520ms cubic-bezier(0.4, 0, 0.1, 1),
                height 520ms cubic-bezier(0.4, 0, 0.1, 1),
                opacity 220ms cubic-bezier(0.4, 0, 0.1, 1);
}

.cr-trades-grid__indicator--visible {
    opacity: 1;
}

.cr-trades-grid__item {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    background: #fff;
    border: 1.5px solid rgba(10, 17, 25, 0.08);
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out);
}

.cr-trades-grid__item:hover {
    color: var(--color-pure-white);
    border-color: var(--color-text-primary);
}

/* ============================================
   25. BOTTOM CTA — Dark Banner
   ============================================ */
.cr-bottom-cta {
    position: relative;
    background: #1a1814;
    padding: clamp(80px, 10vw, 140px) 0;
    margin-bottom: clamp(60px, 8vw, 120px);
    overflow: hidden;
}

.cr-bottom-cta__grid-bg {
    position: absolute; inset: 0;
    background-image:
        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: 40px 40px;
    pointer-events: none;
}

.cr-bottom-cta__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    text-align: center;
    position: relative; z-index: 1;
}

.cr-bottom-cta__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-pure-white);
    margin-bottom: var(--space-6);
    letter-spacing: -1px;
}

.cr-bottom-cta__desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

.cr-bottom-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    background: #C0392B;
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-bottom-cta__btn:hover {
    background: #e0a200;
    box-shadow: 0 8px 32px rgba(192, 57, 43, 0.25);
}

/* ============================================
   APPLICATION FORM
   ============================================ */
.cr-apply {
    position: relative;
    background: #1a1814;
    padding: clamp(80px, 10vw, 140px) 0;
    overflow: hidden;
}

.cr-apply__grid-bg {
    position: absolute; inset: 0;
    background-image:
        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: 40px 40px;
    pointer-events: none;
}

.cr-apply__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: start;
}

.cr-apply__text {
    position: relative;
    padding-top: clamp(16px, 2vw, 32px);
}

.cr-apply__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-pure-white);
    opacity: 0.04;
    position: absolute;
    top: -0.3em; left: -0.05em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.cr-apply__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-pure-white);
    margin-bottom: var(--space-6);
    letter-spacing: -1px;
}

.cr-apply__heading-script {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

/* Select support for sc-contact form on careers page */
.sc-contact__form-group select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 16px 8px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    background: rgba(10, 17, 25, 0.03);
    border: 1.5px solid rgba(10, 17, 25, 0.08);
    border-radius: 10px;
    outline: none;
    transition: border-color var(--duration-base) var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.sc-contact__form-group select:focus {
    border-color: rgba(10, 17, 25, 0.25);
}
/* Datalist input — always float label up */
input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
}
input[list] {
    padding-right: 16px;
}
.sc-contact__form-group input[list] + datalist + label {
    top: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.sc-contact__form-group select + label {
    top: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.cr-apply__desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 500px;
}

.cr-apply__form {
    background: #fff;
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(28px, 3.5vw, 44px);
}

.cr-apply__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 1.2vw, 16px);
    margin-bottom: clamp(10px, 1.2vw, 16px);
}

.cr-apply__form-group {
    position: relative;
    margin-bottom: clamp(10px, 1.2vw, 16px);
}

.cr-apply__form-row .cr-apply__form-group {
    margin-bottom: 0;
}

.cr-apply__form-group input,
.cr-apply__form-group select,
.cr-apply__form-group textarea {
    width: 100%;
    padding: 18px 16px 8px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    background: rgba(10, 17, 25, 0.025);
    border: 1.5px solid rgba(10, 17, 25, 0.08);
    border-radius: 10px;
    outline: none;
    transition: border-color var(--duration-base) var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}

.cr-apply__form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cr-apply__form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cr-apply__form-group input:focus,
.cr-apply__form-group select:focus,
.cr-apply__form-group textarea:focus {
    border-color: rgba(10, 17, 25, 0.25);
}

.cr-apply__form-group label {
    position: absolute;
    top: 14px; left: 16px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    opacity: 0.5;
    pointer-events: none;
    transition: all var(--duration-fast) var(--ease-out);
}

.cr-apply__form-group input:focus + label,
.cr-apply__form-group input:not(:placeholder-shown) + label,
.cr-apply__form-group textarea:focus + label,
.cr-apply__form-group textarea:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.4;
}

.cr-apply__form-group select + label {
    top: 5px;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.4;
}

.cr-apply__form-group--full {
    margin-bottom: clamp(16px, 2vw, 24px);
}

.cr-apply__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-pure-white);
    background: var(--color-text-primary);
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
}

.cr-apply__submit:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
    .cr-apply__inner { grid-template-columns: 1fr; }
    .cr-apply__form-row { grid-template-columns: 1fr; }
}

/* ============================================
   VISUAL ENHANCEMENTS — Architectural Details
   ============================================ */

/* Life hero — vertical architectural line */
.cr-life-hero__inner::after {
    content: '';
    position: absolute;
    right: clamp(80px, 10vw, 160px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(10, 17, 25, 0.06);
}

/* Profiles — corner brackets on section */
.cr-profiles::before,
.cr-profiles::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    z-index: 2;
}
.cr-profiles::before {
    top: 24px; left: 24px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.15);
    border-left: 1.5px solid rgba(255, 255, 255, 0.15);
}
.cr-profiles::after {
    bottom: 24px; right: 24px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    border-right: 1.5px solid rgba(255, 255, 255, 0.15);
}

/* Profile card architectural stamp */
.cr-profiles__card::after {
    content: attr(data-index);
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 1;
}

.cr-profiles__card {
    position: relative;
}

/* Hub hero — concentric rings decoration */
.cr-hub-hero__inner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 40vw, 500px);
    height: clamp(300px, 40vw, 500px);
    border-radius: 50%;
    border: 1px solid rgba(10, 17, 25, 0.04);
    pointer-events: none;
}

.cr-hub-hero__inner::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(450px, 60vw, 750px);
    height: clamp(450px, 60vw, 750px);
    border-radius: 50%;
    border: 1px solid rgba(10, 17, 25, 0.025);
    pointer-events: none;
}

.cr-hub-hero__inner {
    position: relative;
}

/* Track cards — numbered ghost */
.cr-tracks__card {
    position: relative;
    counter-increment: track-counter;
}

.cr-tracks__card::before {
    content: counter(track-counter, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 6rem);
    font-weight: 300;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: 12px; right: 16px;
    line-height: 1;
    pointer-events: none;
}

.cr-tracks__grid {
    counter-reset: track-counter;
}

/* Benefits — label line before heading */
.cr-benefits__heading::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

/* Split visual — aspect ratio and frame detail */
.cr-split__visual {
    aspect-ratio: 4 / 3;
}

/* Split section — alternating tick marks */
.cr-split__visual::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 16px; right: 16px;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        rgba(10, 17, 25, 0.08) 0,
        rgba(10, 17, 25, 0.08) 1px,
        transparent 1px,
        transparent 36px
    );
    pointer-events: none;
}

.cr-split__visual {
    position: relative;
}

/* Timeline items — glowing active dot */
.cr-timeline__item:first-child .cr-timeline__item-dot {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

/* ERG cards — subtle top accent line */
.cr-ergs__card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 2px;
    background: rgba(10, 17, 25, 0.06);
    border-radius: 1px;
}

.cr-ergs__card {
    position: relative;
}

/* Testimonial — architectural lines */
.cr-testimonial::before,
.cr-testimonial::after {
    content: '';
    position: absolute;
    width: 1px;
    top: clamp(40px, 5vw, 80px);
    bottom: clamp(40px, 5vw, 80px);
    background: rgba(10, 17, 25, 0.06);
}

.cr-testimonial::before { left: clamp(40px, 6vw, 100px); }
.cr-testimonial::after { right: clamp(40px, 6vw, 100px); }
.cr-testimonial { position: relative; }

/* Skilled hero — blueprint grid on image */
.cr-skilled-hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 17, 25, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 25, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    border-radius: inherit;
    mix-blend-mode: multiply;
}

.cr-skilled-hero__visual {
    position: relative;
}

/* Military hero — flag-inspired detail */
.cr-military-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-text-primary) 0,
        var(--color-text-primary) 60px,
        transparent 60px,
        transparent 80px
    );
    opacity: 0.08;
}

.cr-military-hero {
    position: relative;
}

/* Bottom CTA — corner brackets */
.cr-bottom-cta::before,
.cr-bottom-cta::after {
    content: '';
    position: absolute;
    width: 40px; height: 40px;
    z-index: 2;
}

.cr-bottom-cta::before {
    top: 32px; left: 32px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
    border-left: 1.5px solid rgba(255, 255, 255, 0.1);
}

.cr-bottom-cta::after {
    bottom: 32px; right: 32px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    border-right: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* People quotes — card hover glow */
.cr-people-quotes__card:hover {
    border-color: rgba(10, 17, 25, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

/* Passion cards — taller images */
.cr-passion__card-visual {
    aspect-ratio: 3 / 2;
}

/* ============================================
   CONSOLIDATED SECTIONS — Reusable components
   ============================================ */

/* --- Generic Section Wrapper --- */
.cr-section {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
.cr-section--offwhite { background: #FFFFFF; }
.cr-section--gray { background: #F5F5F5; }

/* Wrapper that sits behind the Benefits & Culture section so the dark
   grid pattern is revealed when the section narrows on scroll
   (mirrors .sc-faq-wrap on the subcontractor page). */
.cr-benefits-wrap {
    position: relative;
    background-color: #1a1814;
    background-image:
        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: 40px 40px;
}

/* Narrow the inner content of Benefits & Culture so the dark grid backdrop
   shows on both sides. The wrap above keeps its full-width pattern. */
#cr-benefits.cr-section .cr-section__inner {
    max-width: 1100px;
}
.cr-section--dark { background: #1a1814; }
.cr-section__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.cr-section__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
}

/* --- Section Hero (split: text + image) --- */
.cr-section__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: center;
    margin-bottom: clamp(64px, 8vw, 120px);
}
.cr-section__hero-text { position: relative; }
.cr-section__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.3em; left: -0.05em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}
.cr-section__ghost--light { color: var(--color-pure-white); }
.cr-section__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}
.cr-section__label-line {
    width: 56px; height: 2.5px;
    background: var(--color-text-primary);
}
.cr-section__label-line--light { background: rgba(255, 255, 255, 0.4); }
.cr-section__label {
    font-family: 'Courier New', monospace;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}
.cr-section__label--light { color: rgba(255, 255, 255, 0.45); }
.cr-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}
.cr-section__title--light { color: var(--color-pure-white); }
.cr-section__tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}
.cr-section__tagline--light { color: rgba(255, 255, 255, 0.7); }
.cr-section__body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.cr-section__body--light { color: rgba(255, 255, 255, 0.55); }
.cr-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 2.25rem;
    background: var(--color-pure-white);
    border: 1.5px solid var(--color-gray-300, #c8c8c8);
    border-radius: 100px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.01em;
    width: fit-content;
    margin-top: var(--space-4);
    transition: transform var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out),
                background var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out);
}
.cr-section__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(12, 27, 42, 0.12);
    background: var(--color-text-primary);
    border-color: var(--color-text-primary);
    color: var(--color-pure-white);
}
.cr-section__cta--light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-pure-white);
}
.cr-section__cta--light:hover {
    background: var(--color-pure-white);
    border-color: var(--color-pure-white);
    color: var(--color-text-primary);
}
.cr-section__cta-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    background: var(--color-text-primary);
    color: var(--color-pure-white);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform var(--duration-base) var(--ease-out),
                background var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out);
}
.cr-section__cta:hover .cr-section__cta-arrow {
    background: var(--color-pure-white);
    color: var(--color-text-primary);
}
.cr-section__cta--light .cr-section__cta-arrow {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-pure-white);
}
.cr-section__cta--light:hover .cr-section__cta-arrow {
    background: var(--color-text-primary);
    color: var(--color-pure-white);
}
.cr-section__cta:hover .cr-section__cta-arrow { transform: translateX(3px); }
.cr-section__hero-visual {
    position: relative;
    border-radius: var(--radius-lg, clamp(16px, 2vw, 28px));
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
/* Blueprint offset backdrop — matches about us page */
.cr-section__hero-visual::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    background-color: #1a1814;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: var(--radius-lg, clamp(16px, 2vw, 28px));
    z-index: -1;
}
.cr-section__hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}
.cr-section__stamp {
    position: absolute;
    bottom: 12px; right: 12px;
    display: flex; gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(10, 17, 25, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 4px;
}

/* --- Tabs Component --- */
.cr-tabs {
    margin-bottom: clamp(48px, 6vw, 80px);
}

/* Top row: tab nav + text panel (left col), accordion (right col).
   Image panel sits full-width below this grid. */
.cr-students-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
    margin-bottom: clamp(8px, 1vw, 16px);
}

/* Single-column variant — used after the program-type tabs were removed
   so the recruiting / ERG accordions take the full width. */
.cr-students-grid--single {
    grid-template-columns: 1fr;
}
.cr-tabs__nav {
    position: relative;
    display: flex;
    gap: var(--space-2);
    border-bottom: 1px solid rgba(10, 17, 25, 0.08);
    padding-bottom: var(--space-4);
    flex-wrap: wrap;
}
.cr-tabs__indicator {
    position: absolute;
    top: 0;
    left: 0;
    bottom: var(--space-4);
    width: 0;
    background: var(--color-text-primary);
    border-radius: 100px;
    transform: translateX(0);
    transition: transform 520ms cubic-bezier(0.4, 0, 0.1, 1),
                width 520ms cubic-bezier(0.4, 0, 0.1, 1);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1024px) {
    .cr-students-grid {
        grid-template-columns: 1fr;
        gap: clamp(32px, 4vw, 48px);
    }
}
.cr-tabs__btn {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    background: none;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: color var(--duration-base) var(--ease-out);
}
.cr-tabs__btn:hover { color: var(--color-text-primary); }
.cr-tabs__btn--active {
    color: var(--color-pure-white);
}
.cr-tabs__btn--active:hover { color: var(--color-pure-white); }
/* Left column: tab nav stacked above the text panels */
.cr-tabs__left {
    display: flex;
    flex-direction: column;
}
.cr-tabs__text-panels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: clamp(24px, 3vw, 36px);
}
.cr-tabs__image-panels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: clamp(16px, 2vw, 28px);
    border-radius: clamp(12px, 1.5vw, 20px);
    overflow: hidden;
    aspect-ratio: 16 / 7;
}
.cr-tabs__panel {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 520ms cubic-bezier(0.4, 0, 0.1, 1),
                transform 520ms cubic-bezier(0.4, 0, 0.1, 1);
}
.cr-tabs__panel--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cr-tabs__image-panel {
    width: 100%;
    height: 100%;
}
.cr-tabs__panel-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}
.cr-tabs__panel-body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.cr-tabs__panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Expandables wrapper --- */
.cr-expandables {
    margin-bottom: clamp(48px, 6vw, 80px);
}
.cr-expandables__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: clamp(32px, 4vw, 48px);
}
.cr-expandables--light .cr-expandables__heading { color: var(--color-pure-white); }
.cr-accordion--light { border-bottom-color: rgba(255, 255, 255, 0.08); }
.cr-accordion--light .cr-accordion__trigger-text { color: var(--color-pure-white); }
.cr-accordion--light .cr-accordion__number { color: rgba(255, 255, 255, 0.4); }
.cr-accordion--light .cr-accordion__icon { color: rgba(255, 255, 255, 0.4); }
.cr-accordion--light .cr-accordion__body p { color: rgba(255, 255, 255, 0.55); }

/* --- ERGs grid inside accordion --- */
.cr-accordion__ergs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    padding-left: 48px;
    margin-top: var(--space-4);
}
.cr-accordion__erg {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding: var(--space-3);
    background: rgba(10, 17, 25, 0.02);
    border-radius: 8px;
}
.cr-accordion__erg strong {
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 2px;
}

/* --- Timeline inside accordion --- */
.cr-accordion__timeline {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.cr-accordion__timeline-item {
    position: relative;
    padding-left: var(--space-6);
    border-left: 2px solid rgba(10, 17, 25, 0.08);
}
.cr-accordion__timeline-label {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}
.cr-accordion__timeline-item p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: none;
    padding-left: 0;
}

/* --- Quote Strip --- */
.cr-quote-strip {
    text-align: center;
    padding: clamp(48px, 6vw, 80px) 0 0;
    border-top: 1px solid rgba(10, 17, 25, 0.06);
    margin-top: clamp(48px, 6vw, 80px);
}
.cr-quote-strip__mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: var(--space-2);
}
.cr-quote-strip__text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-text-primary);
    max-width: 700px;
    margin: 0 auto var(--space-6);
}
.cr-quote-strip__author {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Combined Hero (cr-hero) --- */
.cr-hero {
    position: relative;
    min-height: 100vh;
    padding: clamp(160px, 18vh, 220px) 0 clamp(80px, 10vh, 140px);
    background: #FFFFFF;
    overflow: hidden;
}
.cr-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        /* Subtle line grid */
        linear-gradient(rgba(50, 48, 47, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 48, 47, 0.045) 1px, transparent 1px),
        /* Dots at major intersections */
        radial-gradient(circle, rgba(50, 48, 47, 0.15) 2px, transparent 2.5px);
    background-size: 40px 40px, 40px 40px, 80px 80px;
    background-position: 0 0, 0 0, 0 0;
    pointer-events: none;
}
.cr-hero__grid-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, #FFFFFF, transparent);
    z-index: 1;
}
.cr-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cr-hero__text { max-width: 55%; position: relative; }
.cr-hero__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.3em; left: -0.05em;
    line-height: 1;
    pointer-events: none;
}
.cr-hero__label-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}
.cr-hero__label-line { width: 40px; height: 2px; background: var(--color-text-primary); }
.cr-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}
.cr-hero__title { margin-bottom: var(--space-4); }
.cr-hero__title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--color-text-primary);
}
.cr-hero__title-script {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 8px;
}
.cr-hero__title-script::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: clamp(10px, 1.2vw, 16px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'%3E%3Cpath d='M 4,8 C 50,3 130,2 200,6 C 270,10 350,8 396,5 C 350,11 270,15 200,12 C 130,9 50,12 4,13 Z' fill='%23FF1A0F' opacity='0.92'/%3E%3Cpath d='M 12,10 C 70,7 150,6 210,9 C 270,12 360,10 390,8' stroke='%23FF1A0F' stroke-width='1' fill='none' opacity='0.45' stroke-linecap='round'/%3E%3C/svg%3E");
}
.cr-hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}
.cr-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}
.cr-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 2.25rem;
    background: var(--color-pure-white);
    border: 1.5px solid var(--color-gray-300, #c8c8c8);
    border-radius: 100px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    width: fit-content;
    transition: transform var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out),
                background var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out);
}
.cr-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(12, 27, 42, 0.12);
    background: var(--color-text-primary);
    border-color: var(--color-text-primary);
    color: var(--color-pure-white);
}
.cr-hero__cta-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    background: var(--color-text-primary);
    color: var(--color-pure-white);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform var(--duration-base) var(--ease-out),
                background var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out);
}
.cr-hero__cta:hover .cr-hero__cta-arrow {
    background: var(--color-pure-white);
    color: var(--color-text-primary);
}
.cr-hero__cta:hover .cr-hero__cta-arrow { transform: translateX(3px); }
/* --- Hero Mosaic — Company portrait style with offset dark backdrop --- */
.cr-hero__mosaic {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(24px, 3vw, 40px);
    width: clamp(340px, 38vw, 520px);
    flex-shrink: 0;
}

/* Main image frame with dark blueprint offset backdrop */
.cr-hero__mosaic-frame {
    position: relative;
}

.cr-hero__mosaic-frame::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    background-color: #1a1814;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: clamp(12px, 1.5vw, 20px);
    z-index: -1;
}

.cr-hero__mosaic-main {
    position: relative;
    aspect-ratio: 2 / 5;
    border-radius: clamp(12px, 1.5vw, 20px);
    overflow: hidden;
    background: #1a1814;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.cr-hero__mosaic-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.cr-hero__mosaic-main:hover .cr-hero__mosaic-img,
.cr-hero__mosaic-sm:hover .cr-hero__mosaic-img {
    transform: scale(1.05);
}

/* Caption overlay on main image */
.cr-hero__mosaic-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(transparent, rgba(10, 17, 25, 0.8));
    border-radius: 0 0 clamp(12px, 1.5vw, 20px) clamp(12px, 1.5vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cr-hero__mosaic-caption-name {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    color: var(--color-pure-white);
    letter-spacing: -0.6px;
}

.cr-hero__mosaic-caption-role {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Side stack */
.cr-hero__mosaic-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 20px);
}

/* Small image frames with offset dark backdrop */
.cr-hero__mosaic-sm-frame {
    position: relative;
    flex: 1;
}

.cr-hero__mosaic-sm-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background-color: #1a1814;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: clamp(10px, 1.2vw, 16px);
    z-index: -1;
}

.cr-hero__mosaic-sm {
    position: relative;
    border-radius: clamp(10px, 1.2vw, 16px);
    overflow: hidden;
    height: 100%;
    background: #1a1814;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.cr-hero__mosaic-sm .cr-hero__mosaic-img {
    height: 100%;
}
@keyframes crBadgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================================
   Hero entrance animation (page load)
   1. Ghost watermark fades in
   2. Label line grows from 0 → 40px, then label text fades in
   3. Title lines mask-reveal (rise from beneath baseline)
   4. Tagline + subtitle fade up
   5. Brush underline draws in left → right under "that Matters"
   6. CTA pill fades up
   7. Mosaic main frame lifts in (shadow + blueprint backdrop included)
   8. Mosaic stack frames lift in staggered
   9. All inner imgs Ken Burns'd subtly
   ============================================================ */

/* Ghost watermark */
.cr-hero__ghost {
    opacity: 0;
    transform: scale(0.98);
    transform-origin: left top;
    animation: crHeroGhost 1100ms cubic-bezier(0.22, 1, 0.36, 1) 50ms forwards;
}

/* Label row: line grows in width, then label text fades */
.cr-hero__label-line {
    width: 0;
    animation: crHeroLabelLine 450ms cubic-bezier(0.65, 0, 0.35, 1) 130ms forwards;
}
.cr-hero__label {
    opacity: 0;
    transform: translateX(-6px);
    animation: crHeroLabelText 500ms cubic-bezier(0.22, 1, 0.36, 1) 280ms forwards;
}

/* Title mask reveal */
.cr-hero__title-main,
.cr-hero__title-script {
    display: inline-block;
    overflow: hidden;
    padding: 0.05em 0.04em;
    margin: -0.05em -0.04em;
}
.cr-hero__title-inner {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
    animation: crHeroLineRise 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cr-hero__title-main   .cr-hero__title-inner { animation-delay: 180ms; }
.cr-hero__title-script .cr-hero__title-inner { animation-delay: 280ms; }

/* Brush underline draws in after script lands */
.cr-hero__title-script::after {
    transform-origin: left center;
    transform: scaleX(0);
    animation: crHeroBrush 550ms cubic-bezier(0.65, 0, 0.35, 1) 700ms forwards;
}

/* Tagline + subtitle */
.cr-hero__tagline {
    opacity: 0;
    transform: translateY(16px);
    animation: crHeroFadeUp 600ms cubic-bezier(0.22, 1, 0.36, 1) 550ms forwards;
}
.cr-hero__subtitle {
    opacity: 0;
    transform: translateY(18px);
    animation: crHeroFadeUp 600ms cubic-bezier(0.22, 1, 0.36, 1) 700ms forwards;
}

/* CTA pill */
.cr-hero__cta {
    opacity: 0;
    transform: translateY(14px);
    animation: crHeroFadeUp 550ms cubic-bezier(0.22, 1, 0.36, 1) 850ms forwards;
}

/* Mosaic main frame — lifts in as one piece (shadow + blueprint backdrop) */
.cr-hero__mosaic-frame {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transform-origin: center bottom;
    will-change: transform, opacity;
    animation: crHeroCardLift 850ms cubic-bezier(0.22, 1, 0.36, 1) 250ms forwards;
}
.cr-hero__mosaic-main .cr-hero__mosaic-img {
    transform: scale(1.06) translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    animation: crHeroKenBurns 1800ms cubic-bezier(0.22, 1, 0.36, 1) 380ms forwards;
}

/* Mosaic stack frames — staggered lift after main */
.cr-hero__mosaic-sm-frame {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    transform-origin: center bottom;
    will-change: transform, opacity;
    animation: crHeroCardLift 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cr-hero__mosaic-stack .cr-hero__mosaic-sm-frame:nth-child(1) { animation-delay: 480ms; }
.cr-hero__mosaic-stack .cr-hero__mosaic-sm-frame:nth-child(2) { animation-delay: 600ms; }
.cr-hero__mosaic-sm .cr-hero__mosaic-img {
    transform: scale(1.06) translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    animation: crHeroKenBurns 1700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cr-hero__mosaic-stack .cr-hero__mosaic-sm-frame:nth-child(1) .cr-hero__mosaic-img { animation-delay: 580ms; }
.cr-hero__mosaic-stack .cr-hero__mosaic-sm-frame:nth-child(2) .cr-hero__mosaic-img { animation-delay: 700ms; }

@keyframes crHeroGhost {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 0.04; transform: scale(1); }
}
@keyframes crHeroLabelLine {
    from { width: 0; }
    to   { width: 40px; }
}
@keyframes crHeroLabelText {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes crHeroLineRise {
    from { transform: translateY(110%); }
    to   { transform: translateY(0); }
}
@keyframes crHeroBrush {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
@keyframes crHeroFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes crHeroCardLift {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes crHeroKenBurns {
    from { transform: scale(1.06) translateZ(0); }
    to   { transform: scale(1) translateZ(0); }
}

@media (prefers-reduced-motion: reduce) {
    .cr-hero__ghost,
    .cr-hero__label-line,
    .cr-hero__label,
    .cr-hero__title-inner,
    .cr-hero__title-script::after,
    .cr-hero__tagline,
    .cr-hero__subtitle,
    .cr-hero__cta,
    .cr-hero__mosaic-frame,
    .cr-hero__mosaic-sm-frame,
    .cr-hero__mosaic-img {
        animation: none;
    }
    .cr-hero__ghost                 { opacity: 0.04; transform: none; }
    .cr-hero__label-line            { width: 40px; }
    .cr-hero__label                 { opacity: 1; transform: none; }
    .cr-hero__title-inner           { transform: none; }
    .cr-hero__title-script::after   { transform: scaleX(1); }
    .cr-hero__tagline               { opacity: 1; transform: none; }
    .cr-hero__subtitle              { opacity: 1; transform: none; }
    .cr-hero__cta                   { opacity: 1; transform: none; }
    .cr-hero__mosaic-frame          { opacity: 1; transform: none; }
    .cr-hero__mosaic-sm-frame       { opacity: 1; transform: none; }
    .cr-hero__mosaic-img            { transform: none; }
}

/* ============================================
   CONSOLIDATED RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 1023px) {
    .cr-hero__inner { flex-direction: column; align-items: flex-start; gap: var(--space-10); }
    .cr-hero__text { max-width: 100%; }
    .cr-hero__mosaic { width: 100%; max-width: 500px; }
    .cr-section__hero { grid-template-columns: 1fr; }
    .cr-section__hero-visual { max-width: 500px; }
    .cr-tabs__panel-inner { grid-template-columns: 1fr; }
    .cr-accordion__ergs-grid { grid-template-columns: 1fr; }
    .cr-tracks__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .cr-tracks__grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ============================================
   PREMIUM UPGRADES — New HTML elements
   ============================================ */

/* --- 1. LIFE HERO: Badge + Script + Ticks --- */
.cr-life-hero__title-script {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 8px;
}
.cr-life-hero__title-script::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: clamp(10px, 1.2vw, 16px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'%3E%3Cpath d='M 4,8 C 50,3 130,2 200,6 C 270,10 350,8 396,5 C 350,11 270,15 200,12 C 130,9 50,12 4,13 Z' fill='%23FF1A0F' opacity='0.92'/%3E%3Cpath d='M 12,10 C 70,7 150,6 210,9 C 270,12 360,10 390,8' stroke='%23FF1A0F' stroke-width='1' fill='none' opacity='0.45' stroke-linecap='round'/%3E%3C/svg%3E");
}
.cr-life-hero__badge {
    position: absolute;
    right: clamp(40px, 8vw, 120px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(160px, 18vw, 220px);
    height: clamp(160px, 18vw, 220px);
    z-index: 2;
}
.cr-life-hero__badge-text {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    animation: crBadgeRotate 20s linear infinite;
}
.cr-life-hero__badge-text text {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    fill: rgba(10, 17, 25, 0.3);
}
.cr-life-hero__badge-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(80px, 9vw, 110px);
    height: clamp(80px, 9vw, 110px);
    border-radius: 50%;
    border: 1.5px solid rgba(10, 17, 25, 0.12);
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.cr-life-hero__ticks {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, rgba(10, 17, 25, 0.08) 0, rgba(10, 17, 25, 0.08) 1px, transparent 1px, transparent 36px);
}
@keyframes crBadgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- 2. PROFILES: Grayscale + Offset Frame --- */
.cr-profiles__card-image {
    filter: grayscale(100%) brightness(0.95);
    transition: filter 0.6s var(--ease-out);
}
.cr-profiles__card:hover .cr-profiles__card-image {
    filter: grayscale(0) brightness(1);
}
.cr-profiles__card {
    position: relative;
}

/* --- 3. HUB HERO: Grid BG + Frame + Ticks --- */
.cr-hub-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(10, 17, 25, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 25, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(10, 17, 25, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 25, 0.01) 1px, transparent 1px);
    background-size: 160px 160px, 160px 160px, 40px 40px, 40px 40px;
    pointer-events: none;
}
.cr-hub-hero { position: relative; overflow: hidden; }
.cr-hub-hero__title { font-size: clamp(3.5rem, 8vw, 8rem); letter-spacing: -3px; }
.cr-hub-hero__title-script::after { height: clamp(12px, 1.5vw, 20px); }
.cr-hub-hero__frame {
    position: absolute;
    inset: clamp(32px, 4vw, 64px);
    pointer-events: none;
    z-index: 0;
}
.cr-hub-hero__corner {
    position: absolute;
    width: 24px; height: 24px;
}
.cr-hub-hero__corner::before,
.cr-hub-hero__corner::after {
    content: '';
    position: absolute;
    background: rgba(10, 17, 25, 0.08);
}
.cr-hub-hero__corner::before { width: 1.5px; height: 100%; }
.cr-hub-hero__corner::after { width: 100%; height: 1.5px; }
.cr-hub-hero__corner--tl { top: 0; left: 0; }
.cr-hub-hero__corner--tr { top: 0; right: 0; }
.cr-hub-hero__corner--tr::before { right: 0; }
.cr-hub-hero__corner--tr::after { right: 0; }
.cr-hub-hero__corner--bl { bottom: 0; left: 0; }
.cr-hub-hero__corner--bl::before { left: 0; bottom: 0; }
.cr-hub-hero__corner--bl::after { left: 0; bottom: 0; }
.cr-hub-hero__corner--br { bottom: 0; right: 0; }
.cr-hub-hero__corner--br::before { right: 0; bottom: 0; }
.cr-hub-hero__corner--br::after { right: 0; bottom: 0; }
.cr-hub-hero__ticks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cr-hub-hero__ticks::before {
    content: '';
    position: absolute;
    top: 0; left: clamp(32px, 4vw, 64px); right: clamp(32px, 4vw, 64px);
    height: 4px;
    background: repeating-linear-gradient(90deg, rgba(10, 17, 25, 0.06) 0, rgba(10, 17, 25, 0.06) 1px, transparent 1px, transparent 36px);
}
.cr-hub-hero__ticks::after {
    content: '';
    position: absolute;
    bottom: 0; left: clamp(32px, 4vw, 64px); right: clamp(32px, 4vw, 64px);
    height: 4px;
    background: repeating-linear-gradient(90deg, rgba(10, 17, 25, 0.06) 0, rgba(10, 17, 25, 0.06) 1px, transparent 1px, transparent 36px);
}

/* --- 4. TRACKS: Dark Blueprint Cards ---
   Outer frame mirrors the indicator-pill family (map popup, project cards,
   contact buttons): 18px radius, 0.5px hairline border, layered soft shadow,
   house motion curve on hover lift. Dark theme + grid + corner brackets stay. */
.cr-tracks__card {
    background: #1a1814;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.45),
                0 2px 6px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 520ms cubic-bezier(0.4, 0, 0.1, 1),
                box-shadow 520ms cubic-bezier(0.4, 0, 0.1, 1),
                border-color 520ms cubic-bezier(0.4, 0, 0.1, 1);
}
.cr-tracks__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.55),
                0 4px 10px rgba(0, 0, 0, 0.22);
}
.cr-tracks__card-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.cr-tracks__card-corners { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cr-tracks__corner { position: absolute; width: 18px; height: 18px; }
.cr-tracks__corner::before, .cr-tracks__corner::after { content: ''; position: absolute; background: rgba(255, 255, 255, 0.2); }
.cr-tracks__corner::before { width: 1px; height: 100%; }
.cr-tracks__corner::after { width: 100%; height: 1px; }
.cr-tracks__corner--tl { top: 14px; left: 14px; }
.cr-tracks__corner--tr { top: 14px; right: 14px; }
.cr-tracks__corner--tr::before { right: 0; }
.cr-tracks__corner--tr::after { right: 0; }
.cr-tracks__corner--bl { bottom: 14px; left: 14px; }
.cr-tracks__corner--bl::before { bottom: 0; }
.cr-tracks__corner--bl::after { bottom: 0; }
.cr-tracks__corner--br { bottom: 14px; right: 14px; }
.cr-tracks__corner--br::before { right: 0; bottom: 0; }
.cr-tracks__corner--br::after { right: 0; bottom: 0; }
.cr-tracks__card-title { color: var(--color-pure-white); }
.cr-tracks__card-subtitle { color: rgba(255, 255, 255, 0.5); }
.cr-tracks__card-link { color: var(--color-pure-white); }
.cr-tracks__card::before { color: rgba(255, 255, 255, 0.06); }

/* --- 5. BENEFITS: Numbers + Frame --- */
.cr-benefits__category-number {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    opacity: 0.4;
    margin-right: var(--space-3);
}
.cr-benefits__frame { position: relative; }
.cr-benefits__frame .cr-benefits__frame-corner { position: absolute; width: 20px; height: 20px; }
.cr-benefits__item { transition: all var(--duration-base) var(--ease-out); border-left: 2px solid transparent; }
.cr-benefits__item:hover { border-left-color: rgba(10, 17, 25, 0.12); padding-left: var(--space-4); }

/* --- 6. PROJECTS: Edge Fades + Stamps --- */
.cr-projects__track-wrap {
    position: relative;
    overflow: hidden;
}
.cr-projects__track-wrap::before,
.cr-projects__track-wrap::after {
    display: none;
}
.cr-projects__card-image { transition: all 0.5s var(--ease-out); }
.cr-projects__card:hover .cr-projects__card-image { transform: scale(1.04); filter: brightness(1.05); }
.cr-projects__card-stamp {
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 17, 25, 0.15);
    margin-top: var(--space-2);
}

/* --- 7. STUDENTS HERO: Split Layout --- */
.cr-students-hero__inner--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.cr-students-hero__visual {
    border-radius: clamp(16px, 2vw, 28px);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
}
.cr-students-hero__image {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}
.cr-students-hero__stamp {
    position: absolute;
    bottom: 12px; right: 12px;
    display: flex; gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(10, 17, 25, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 4px;
}

/* --- 8-10. SPLITS: Numbers + Stamps --- */
.cr-split__number {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.4;
    margin-bottom: var(--space-4);
}
.cr-split__stamp {
    position: absolute;
    bottom: 12px; right: 12px;
    display: flex; gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(10, 17, 25, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 1;
}

/* --- 11. TIMELINE: Corners + Bigger Labels --- */
.cr-timeline { position: relative; }
.cr-timeline__corner {
    position: absolute;
    width: 24px; height: 24px;
    z-index: 2;
}
.cr-timeline__corner::before,
.cr-timeline__corner::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}
.cr-timeline__corner::before { width: 1.5px; height: 100%; }
.cr-timeline__corner::after { width: 100%; height: 1.5px; }
.cr-timeline__corner--tl { top: 20px; left: 20px; }
.cr-timeline__corner--tr { top: 20px; right: 20px; }
.cr-timeline__corner--tr::before { right: 0; }
.cr-timeline__corner--tr::after { right: 0; }
.cr-timeline__corner--bl { bottom: 20px; left: 20px; }
.cr-timeline__corner--bl::before { bottom: 0; }
.cr-timeline__corner--bl::after { bottom: 0; }
.cr-timeline__corner--br { bottom: 20px; right: 20px; }
.cr-timeline__corner--br::before { right: 0; bottom: 0; }
.cr-timeline__corner--br::after { right: 0; bottom: 0; }
.cr-timeline__item-label {
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    color: var(--color-pure-white) !important;
    opacity: 1 !important;
}
.cr-timeline__item-dot {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

/* --- 12. ERGS: Stamps + Ghost Letters + Accent Bar --- */
.cr-ergs__card { position: relative; border-top: 3px solid rgba(10, 17, 25, 0.06); }
.cr-ergs__card::before {
    content: attr(data-letter);
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.03;
    position: absolute;
    top: 8px; right: 12px;
    line-height: 1;
    pointer-events: none;
}
.cr-ergs__card-stamp {
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 17, 25, 0.12);
    margin-top: auto;
    padding-top: var(--space-4);
}
.cr-ergs__card-name { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }

/* --- 13. TESTIMONIAL: Frame + Rings + Rule --- */
.cr-testimonial__frame {
    position: absolute;
    inset: clamp(24px, 3vw, 48px);
    border: 1px dashed rgba(10, 17, 25, 0.06);
    pointer-events: none;
}
.cr-testimonial__frame::before {
    content: '';
    position: absolute;
    top: -1px; left: 24px; right: 24px;
    height: 4px;
    background: repeating-linear-gradient(90deg, rgba(10, 17, 25, 0.05) 0, rgba(10, 17, 25, 0.05) 1px, transparent 1px, transparent 36px);
}
.cr-testimonial__frame::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 24px; right: 24px;
    height: 4px;
    background: repeating-linear-gradient(90deg, rgba(10, 17, 25, 0.05) 0, rgba(10, 17, 25, 0.05) 1px, transparent 1px, transparent 36px);
}
.cr-testimonial__rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(10, 17, 25, 0.03);
    pointer-events: none;
}
.cr-testimonial__rings::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(10, 17, 25, 0.04);
}
.cr-testimonial__quote-mark { font-size: 8rem; }
.cr-testimonial__rule {
    width: 40px; height: 2px;
    background: var(--color-text-primary);
    opacity: 0.15;
    margin: 0 auto var(--space-6);
}

/* --- 14. EXPERIENCED HERO: Split + Ghost --- */
.cr-experienced-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: center;
}
.cr-experienced-hero__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.3em; right: -0.05em;
    line-height: 1;
    pointer-events: none;
}
.cr-experienced-hero__visual {
    border-radius: clamp(16px, 2vw, 28px);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.cr-experienced-hero__image {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* --- 15. JOB FAMILIES: Dark Sidebar --- */
.cr-job-families__sidebar {
    position: relative;
    background: #FF3B30;
    border-radius: clamp(16px, 2vw, 28px);
    padding: clamp(32px, 3.5vw, 48px);
    overflow: hidden;
}
.cr-job-families__sidebar-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.cr-job-families__sidebar .cr-job-families__sticky {
    position: sticky;
    top: 120px;
}
.cr-job-families__sidebar .cr-job-families__label-line { background: rgba(255, 255, 255, 0.3); }
.cr-job-families__sidebar .cr-job-families__heading { color: var(--color-pure-white); }
.cr-job-families__sidebar .cr-job-families__desc { color: rgba(255, 255, 255, 0.5); }
.cr-accordion__number { font-size: clamp(1rem, 1.2vw, 1.2rem); opacity: 0.5; }
.cr-accordion__trigger[aria-expanded="true"] {
    /* left-border accent removed per request */
}

/* --- 16. PEOPLE QUOTES: Featured + Dark Alternating --- */
.cr-people-quotes__card--featured {
    grid-column: span 2;
}
.cr-people-quotes__card--featured .cr-people-quotes__quote {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}
.cr-people-quotes__card:nth-child(even) {
    background: #1a1814;
}
.cr-people-quotes__card:nth-child(even) .cr-people-quotes__quote-mark { color: var(--color-pure-white); }
.cr-people-quotes__card:nth-child(even) .cr-people-quotes__quote { color: rgba(255, 255, 255, 0.8); }
.cr-people-quotes__card:nth-child(even) .cr-people-quotes__name { color: var(--color-pure-white); }
.cr-people-quotes__card:nth-child(even) .cr-people-quotes__role { color: rgba(255, 255, 255, 0.45); }
.cr-people-quotes__card:nth-child(even) .cr-people-quotes__stamp { color: rgba(255, 255, 255, 0.12); }
.cr-people-quotes__card { padding: clamp(36px, 4vw, 56px); }

/* --- 17. PASSION: Overlay Titles --- */
.cr-passion__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(20px, 2.5vw, 32px);
    transition: background 0.5s var(--ease-out);
}
.cr-passion__card:hover .cr-passion__card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 80%);
}
.cr-passion__card-title {
    color: var(--color-pure-white);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin-bottom: var(--space-2);
}
.cr-passion__card-cta {
    color: var(--color-pure-white);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out);
    font-size: var(--text-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}
.cr-passion__card:hover .cr-passion__card-cta {
    opacity: 1;
    transform: translateY(0);
}
.cr-passion__card-visual { position: relative; overflow: hidden; border-radius: clamp(12px, 1.5vw, 20px); aspect-ratio: 3 / 2; }
.cr-passion__card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.cr-passion__card:hover .cr-passion__card-image { transform: scale(1.05); }

/* --- 18. SKILLED HERO: Ghost --- */
.cr-skilled-hero__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.2em; right: -0.05em;
    line-height: 1;
    pointer-events: none;
}

/* --- 19. TRADES GRID: Numbers + Hover Invert --- */
.cr-trades-grid__item { position: relative; padding-left: 36px; }
.cr-trades-grid__item::before {
    content: attr(data-num);
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    opacity: 0.3;
    letter-spacing: 0.05em;
}
.cr-trades-grid__item:hover {
    background: #1a1814;
    color: var(--color-pure-white);
    border-color: #1a1814;
}

/* --- 20. MILITARY HERO: Ghost + Dashed Frame --- */
.cr-military-hero__ghost {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.04;
    position: absolute;
    top: -0.2em; right: -0.05em;
    line-height: 1;
    pointer-events: none;
}

/* --- 21. MILITARY ACCORDION: Dark + Grid --- */
.cr-military-accordion {
    background: #1a1814;
    position: relative;
}
.cr-military-accordion__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.cr-military-accordion__inner { position: relative; z-index: 1; }
.cr-military-accordion__heading { color: var(--color-pure-white); }
.cr-military-accordion .cr-accordion { border-bottom-color: rgba(255, 255, 255, 0.08); }
.cr-military-accordion .cr-accordion__trigger-text { color: var(--color-pure-white); }
.cr-military-accordion .cr-accordion__number { color: rgba(255, 255, 255, 0.4); }
.cr-military-accordion .cr-accordion__icon { color: rgba(255, 255, 255, 0.4); }
.cr-military-accordion .cr-accordion__body p { color: rgba(255, 255, 255, 0.55); }

/* --- 22. BOTTOM CTA: Script + Bigger --- */
.cr-bottom-cta__heading { font-size: clamp(3rem, 6vw, 5.5rem); }
.cr-bottom-cta__heading-script {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}
.cr-bottom-cta__heading-script::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%;
    height: clamp(10px, 1.2vw, 16px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'%3E%3Cpath d='M 4,8 C 50,3 130,2 200,6 C 270,10 350,8 396,5 C 350,11 270,15 200,12 C 130,9 50,12 4,13 Z' fill='%23FF1A0F' opacity='0.92'/%3E%3Cpath d='M 12,10 C 70,7 150,6 210,9 C 270,12 360,10 390,8' stroke='%23FF1A0F' stroke-width='1' fill='none' opacity='0.45' stroke-linecap='round'/%3E%3C/svg%3E");
}
.cr-bottom-cta__btn { padding: 18px 48px; font-size: var(--text-base); }

/* ============================================
   RESPONSIVE — 1023px
   ============================================ */
@media (max-width: 1023px) {
    /* Profiles grid */
    .cr-profiles__grid { grid-template-columns: repeat(2, 1fr); }

    /* Tracks grid */
    .cr-tracks__grid { grid-template-columns: 1fr; max-width: 600px; }

    /* Benefits items grid */
    .cr-benefits__items-grid { grid-template-columns: repeat(2, 1fr); }

    /* Split layouts */
    .cr-split__inner { grid-template-columns: 1fr; }
    .cr-split--reverse .cr-split__text { order: 1; }
    .cr-split--reverse .cr-split__visual { order: -1; }

    /* Skilled hero */
    .cr-skilled-hero__inner { grid-template-columns: 1fr; }

    /* Military hero */
    .cr-military-hero__inner { grid-template-columns: 1fr; }

    /* Job families */
    .cr-job-families__inner { grid-template-columns: 1fr; }
    .cr-job-families__sticky { position: static; }

    /* People quotes */
    .cr-people-quotes__grid { grid-template-columns: 1fr; max-width: 600px; }

    /* Passion grid */
    .cr-passion__grid { grid-template-columns: repeat(2, 1fr); }

    /* ERGs header */
    .cr-ergs__header { flex-direction: column; align-items: flex-start; }

    /* Ghost text */
    .cr-life-hero__ghost { font-size: clamp(4rem, 15vw, 8rem); }
    .cr-students-hero__ghost { font-size: clamp(4rem, 15vw, 8rem); }

    /* New split layouts */
    .cr-students-hero__inner--grid { grid-template-columns: 1fr; }
    .cr-students-hero__right { max-width: 500px; }
    .cr-experienced-hero__inner { grid-template-columns: 1fr; }
    .cr-experienced-hero__visual { max-width: 500px; order: -1; }
    .cr-life-hero__badge { display: none; }
    .cr-people-quotes__card--featured { grid-column: span 1; }
}

/* ============================================
   RESPONSIVE — 767px
   ============================================ */
@media (max-width: 767px) {
    /* Profiles grid to single column */
    .cr-profiles__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    /* Benefits items grid */
    .cr-benefits__items-grid { grid-template-columns: 1fr; }

    /* Timeline */
    .cr-timeline__items { padding-left: clamp(48px, 8vw, 80px); }
    .cr-timeline__items::before { left: clamp(20px, 3.5vw, 32px); }
    .cr-timeline__item-dot { left: calc(-1 * clamp(48px, 8vw, 80px) + clamp(14px, 2.8vw, 26px)); }

    /* Passion grid */
    .cr-passion__grid { grid-template-columns: 1fr; }

    /* Projects carousel cards */
    .cr-projects__card { flex: 0 0 260px; min-width: 240px; }

    /* ERGs carousel cards */
    .cr-ergs__card { flex: 0 0 280px; min-width: 260px; }

    /* Application form mobile overrides live in subcontractor-page.css's
       @media (max-width: 767px) block — that file is loaded AFTER this
       one, so rules with equal specificity there override anything we'd
       put here. */
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    /* Hero padding */
    .cr-life-hero { padding-top: 120px; }
    .cr-students-hero { padding-top: 120px; }
    .cr-experienced-hero { padding-top: 120px; }
    .cr-skilled-hero { padding-top: 120px; }
    .cr-military-hero { padding-top: 120px; }

    /* Hero title sizes — bumped from 2rem to 3rem (or larger for the
       hub) so the title reads as a confident headline on mobile rather
       than being shrunk down to body-text size. Each one's base clamp
       has a 2.5-3rem floor that's already in the right ballpark; these
       overrides were aggressively reducing them. */
    .cr-life-hero__title-main { font-size: 3rem; }
    .cr-students-hero__title { font-size: 3rem; }
    .cr-experienced-hero__title { font-size: 3rem; }
    .cr-skilled-hero__title { font-size: 3rem; }
    .cr-military-hero__title { font-size: 3rem; }

    /* Hub hero */
    .cr-hub-hero__title { font-size: 3.25rem; letter-spacing: -1px; }
    .cr-hub-hero { padding: 80px 0; }

    /* Testimonial quote */
    .cr-testimonial__quote { font-size: 1.3rem; }

    /* Carousel cards smaller */
    .cr-projects__card { flex: 0 0 240px; min-width: 220px; }
    .cr-ergs__card { flex: 0 0 260px; min-width: 240px; }

    /* Timeline tighter */
    .cr-timeline__items { padding-left: 40px; }
    .cr-timeline__items::before { left: 14px; }
    .cr-timeline__item-dot { left: -26px; }
}
