/* SHIFT Method Page — Editorial Typography Design */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Hero ────────────────────────────────────── */
.shift-hero {
    background: #0f172a;
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.shift-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(37, 99, 235, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(118, 75, 162, 0.1), transparent);
}

.shift-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
}

.shift-hero .container {
    position: relative;
    z-index: 2;
}

.shift-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.shift-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.shift-hero h1 em {
    font-style: italic;
    color: #60a5fa;
}

.shift-hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* The large SHIFT typography in hero background */
.shift-hero-letters {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 400;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.02em;
}

/* ── Stats Strip ─────────────────────────────── */
.shift-stats-strip {
    background: #1e293b;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.shift-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.shift-stat {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.shift-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.shift-stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: #60a5fa;
    margin-bottom: 0.4rem;
}

.shift-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* ── Intro Section ───────────────────────────── */
.shift-intro {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.shift-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.shift-intro h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.shift-intro p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.shift-intro ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.shift-intro li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
    font-weight: 500;
}

.shift-intro li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
    transform: rotate(45deg);
}

.shift-promise-box {
    background: #0f172a;
    color: white;
    padding: 2.5rem;
    border-radius: 2px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.shift-promise-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2563eb;
}

.shift-promise-box h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.shift-promise-box p {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.5;
    margin: 0;
}

/* ── The 5 Steps Section ─────────────────────── */
.shift-steps-section {
    padding: 0;
    background: white;
}

.shift-steps-header {
    text-align: center;
    padding: 80px 2rem 60px;
}

.shift-steps-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.shift-steps-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Individual Step */
.shift-phase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.shift-phase:nth-child(even) {
    direction: rtl;
}

.shift-phase:nth-child(even) > * {
    direction: ltr;
}

/* The large letter side */
.shift-phase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.shift-phase:nth-child(1) .shift-phase-visual { background: #0f172a; }
.shift-phase:nth-child(2) .shift-phase-visual { background: #1e293b; }
.shift-phase:nth-child(3) .shift-phase-visual { background: #0f172a; }
.shift-phase:nth-child(4) .shift-phase-visual { background: #1e293b; }
.shift-phase:nth-child(5) .shift-phase-visual { background: #0f172a; }

.shift-phase-letter {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(10rem, 20vw, 18rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(96, 165, 250, 0.3);
    position: relative;
    line-height: 1;
    user-select: none;
}

.shift-phase-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748b;
    letter-spacing: 2px;
}

/* The content side */
.shift-phase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: white;
}

.shift-phase:nth-child(even) .shift-phase-content {
    background: #f8fafc;
}

.shift-phase-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.shift-phase-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.shift-phase-goal {
    font-size: 1.1rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.shift-phase-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.shift-phase-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.shift-phase-activities li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.shift-phase-activities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border: 1.5px solid #2563eb;
    border-radius: 50%;
}

/* ── Testimonial ─────────────────────────────── */
.shift-testimonial {
    background: #0f172a;
    color: white;
    padding: 80px 0;
    position: relative;
}

.shift-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.shift-testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shift-testimonial-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 2rem;
}

.shift-testimonial blockquote {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 2rem;
}

.shift-testimonial cite {
    font-style: normal;
    color: #94a3b8;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1.5rem;
}

.shift-testimonial-results {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shift-testimonial-results span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #60a5fa;
    letter-spacing: 0.5px;
}

/* ── Bottom CTA ──────────────────────────────── */
.shift-bottom-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.shift-bottom-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1rem;
}

.shift-bottom-cta p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.shift-cta-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shift-cta-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

/* ── Animations ──────────────────────────────── */
@keyframes shiftFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.shift-hero .container > * {
    animation: shiftFadeUp 0.8s ease-out both;
}

.shift-hero .container > *:nth-child(1) { animation-delay: 0s; }
.shift-hero .container > *:nth-child(2) { animation-delay: 0.1s; }
.shift-hero .container > *:nth-child(3) { animation-delay: 0.2s; }
.shift-hero .container > *:nth-child(4) { animation-delay: 0.3s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
    .shift-phase {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .shift-phase:nth-child(even) {
        direction: ltr;
    }

    .shift-phase-visual {
        padding: 3rem 2rem;
        min-height: 200px;
    }

    .shift-phase-letter {
        font-size: 8rem;
    }

    .shift-phase-content {
        padding: 3rem 2rem;
    }

    .shift-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .shift-hero {
        padding: 120px 0 60px;
    }

    .shift-hero-letters {
        display: none;
    }

    .shift-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .shift-stat:nth-child(2)::after {
        display: none;
    }

    .shift-stat {
        padding: 1.5rem 1rem;
    }

    .shift-stat-value {
        font-size: 1.8rem;
    }

    .shift-phase-visual {
        min-height: 150px;
        padding: 2rem;
    }

    .shift-phase-letter {
        font-size: 6rem;
    }

    .shift-phase-content {
        padding: 2.5rem 1.5rem;
    }

    .shift-testimonial-results {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .shift-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .shift-stat::after {
        display: none;
    }

    .shift-phase-content h3 {
        font-size: 1.5rem;
    }

    .shift-hero h1 {
        font-size: 2.2rem;
    }
}
