:root {
    /* Unique colors (not in new system) */
    --col-primary-glow: rgba(59, 99, 207, 0.35);
    --col-green: #10B981;
    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ====================================================
       HERO - Split Typographic Layout
       Left: Giant stacked wordmark + subtitle
       Right: Large image with floating stat card overlay
    ==================================================== */
.hero {
    background: var(--bg-darkest);
    min-height: calc(100vh - var(--nav-height) - 36px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Ambient radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(59, 99, 207, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(91, 130, 224, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

/* Geometric grid lines background */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 99, 207, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 99, 207, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.hero__headline {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text-white);
    margin-bottom: 28px;
}

.hero__headline em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-werqai) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero__sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Right image panel */
.hero__visual {
    position: relative;
}

.hero__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-dark-card);
}

.hero__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 99, 207, 0.35) 0%, rgba(6, 10, 19, 0.4) 100%);
}

/* Floating stat card */
.hero__float-card {
    position: absolute;
    bottom: -24px;
    left: -28px;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    min-width: 190px;
}

.hero__float-card__num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero__float-card__num span {
    color: var(--color-primary);
}

.hero__float-card__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Second float card */
.hero__float-card--2 {
    bottom: auto;
    top: -20px;
    left: auto;
    right: -20px;
}

/* ====================================================
       SECTION: WHO WE ARE
       Asymmetric text + large quote callout
    ==================================================== */
.who-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 99, 207, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.who__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .who__grid {
        grid-template-columns: 5fr 7fr;
        gap: 100px;
    }
}

.who__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who__label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.who__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 28px;
}

.who__body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.who__body p:last-child {
    margin-bottom: 0;
}

/* Giant pull-quote on right */
.who__quote {
    position: relative;
}

.who__quote-mark {
    font-family: var(--font-head);
    font-size: 10rem;
    font-weight: 800;
    color: var(--color-primary-dim);
    line-height: 0.8;
    position: absolute;
    top: -20px;
    left: -20px;
    pointer-events: none;
    user-select: none;
}

.who__quote-text {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.who__quote-text em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(135deg, #3B63CF 0%, #5B82E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.who__quote-attr {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-dark-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ====================================================
       SECTION: WHAT WE DO
       Four-point card grid with numbered reveal
    ==================================================== */
.what-section {
    background: var(--bg-darkest);
    padding: 100px 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-header__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header__eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-header__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header__title em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(135deg, #3B63CF 0%, #5B82E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-header__sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

.what__intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 56px;
}

.what__goal {
    margin-top: 40px;
    padding: 28px 36px;
    border-left: 3px solid var(--color-primary);
    background: var(--color-primary-dim);
    border-radius: 0 12px 12px 0;
}

.what__goal p {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Point cards */
.what__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .what__cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .what__cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.what-card {
    background: var(--bg-dark-card);
    padding: 40px 32px;
    border: 1px solid var(--bg-dark-border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
}

.what-card:first-child {
    border-radius: 16px 0 0 16px;
}

.what-card:last-child {
    border-radius: 0 16px 16px 0;
}

@media (max-width: 1023px) {
    .what-card {
        border-radius: 12px !important;
    }
}

.what-card:hover {
    background: var(--bg-dark-elevated);
    border-color: rgba(59, 99, 207, 0.4);
}

.what-card:hover .what-card__number {
    color: rgba(59, 99, 207, 0.15);
}

.what-card__number {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    transition: color 0.3s;
    pointer-events: none;
    user-select: none;
}

.what-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-dim);
    border: 1px solid rgba(59, 99, 207, 0.25);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.what-card__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ====================================================
       SECTION: OUR APPROACH
       Full-bleed dark with large geometric shape
    ==================================================== */
.approach-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative large shape */
.approach-section::after {
    content: '';
    position: absolute;
    right: -160px;
    bottom: -160px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(59, 99, 207, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.approach-section::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(59, 99, 207, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.approach__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .approach__grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.approach__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.approach__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--bg-dark-border);
    position: relative;
}

.approach-step:last-child {
    border-bottom: none;
}

.approach-step__num {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    padding-top: 2px;
    min-width: 36px;
}

.approach-step__content h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.approach-step__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ====================================================
       SECTION: MISSION VISION VALUES
       Three columns - bold editorial layout
    ==================================================== */
.mvv-section {
    background: var(--bg-darkest);
    padding: 100px 0;
    position: relative;
}

/* Horizontal rule decoration */
.mvv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 99, 207, 0.4), transparent);
}

.mvv-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 99, 207, 0.4), transparent);
}

.mvv__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 56px;
}

@media (min-width: 768px) {
    .mvv__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mvv-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.mvv-card:first-child {
    border-radius: 16px 0 0 16px;
}

.mvv-card:last-child {
    border-radius: 0 16px 16px 0;
}

@media (max-width: 767px) {
    .mvv-card {
        border-radius: 12px !important;
    }
}

.mvv-card:hover {
    background: var(--bg-dark-elevated);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.mvv-card__title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.mvv-card__body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Large bg letter */
.mvv-card__bg-letter {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-family: var(--font-head);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(59, 99, 207, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ====================================================
       SECTION: FINAL CTA
       High-impact full-bleed with animated gradient border
    ==================================================== */
.cta-section {
    background: var(--bg-darkest);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59, 99, 207, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.cta__box {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.cta__eyebrow::before,
.cta__eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(59, 99, 207, 0.4);
    width: 40px;
}

.cta__title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-white);
    margin-bottom: 24px;
}

.cta__title em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(135deg, #3B63CF 0%, #5B82E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta__sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer tagline */
.cta__footer-line {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-dark-border);
    text-align: center;
}

.cta__footer-line p {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark-muted);
    line-height: 1.5;
}

.cta__footer-line p strong {
    color: var(--color-primary);
    font-weight: 700;
}

.stat-strip {
    background: var(--bg-dark-card);
    border-top: 1px solid var(--bg-dark-border);
    border-bottom: 1px solid var(--bg-dark-border);
    padding: 48px 0;
}

.stat-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .stat-strip__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-strip__item {
    text-align: center;
}

.stat-strip__num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-strip__num sup {
    font-size: 1.4rem;
    color: var(--color-primary);
    vertical-align: super;
    font-weight: 700;
}

.stat-strip__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mobile menu simplified */
.mobile-cta {
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-cta {
        display: none;
    }
}