/* ==========================================================================
   NUDGE — ABOUT US PAGE STYLES
   Extends the base design system in styles.css & legacy-sections.css.
   All color/font tokens are inherited from :root in styles.css.
   ========================================================================== */


/* ==========================================================================
   ABOUT NAVBAR OVERRIDE
   ========================================================================== */
.about-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 6%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(13, 27, 62, 0.90);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.about-nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-nav-back {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
    padding: 6px 0;
}

.about-nav-back:hover {
    color: var(--color-white);
}

.about-nav-back .back-arrow {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.about-nav-back:hover .back-arrow {
    transform: translateX(-3px);
}

.about-nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.12);
}


/* ==========================================================================
   1. ABOUT HERO SECTION
   ========================================================================== */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

/* Reuses .hero-marquee-bg, .marquee-row, etc. from styles.css */

.about-hero-island {
    position: relative;
    z-index: 10;
    padding: 56px 64px 52px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    animation: island-appear 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0.85;
    display: block;
}

.about-hero-title {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.about-hero-subtitle {
    font-size: 17px;
    color: var(--color-text-white-70);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll cue */
.about-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: scroll-cue-bounce 2s ease-in-out infinite;
    opacity: 0.45;
}

.about-scroll-cue span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-white-70);
}

.about-scroll-cue .cue-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scroll-cue-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ==========================================================================
   2. PROBLEM SECTION (Cream background)
   ========================================================================== */
.about-problem-section {
    position: relative;
    padding: 130px 8% 120px;
    background-color: transparent;
    overflow: hidden;
    border-top: 1px solid rgba(26, 18, 8, 0.07);
    border-bottom: 1px solid rgba(26, 18, 8, 0.07);
}

.about-problem-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.problem-badge-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}

.problem-section-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    display: block;
}

.stat-badge {
    background: var(--color-white);
    border: 1px solid rgba(26, 18, 8, 0.08);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(26, 18, 8, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(26, 18, 8, 0.10);
}

.stat-badge .stat-number {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 6px;
}

.stat-badge .stat-number.coral {
    color: var(--color-gold);
}

.stat-badge .stat-label {
    font-size: 13px;
    color: rgba(26, 18, 8, 0.55);
    font-weight: 500;
    line-height: 1.4;
}

.problem-copy-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-pull-quote {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    font-family: var(--font-display);
    font-style: italic;
}

.problem-pull-quote .problem-quote-mark {
    font-size: 1.4em;
    color: var(--color-gold);
    line-height: 0;
    margin-right: 4px;
    vertical-align: -0.15em;
}

.problem-body-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(26, 18, 8, 0.68);
    max-width: 560px;
}

.problem-body-text strong {
    color: var(--color-text-dark);
    font-weight: 700;
}


/* ==========================================================================
   3. SOLUTION SPLIT SECTION (Dark navy, two-column)
   ========================================================================== */
/* ==========================================================================
   3. SOLUTION SPLIT SECTION (Cream background, two-column)
   ========================================================================== */
.about-solution-section {
    position: relative;
    padding: 130px 8% 130px;
    background-color: transparent;
    overflow: hidden;
}

/* Subtle radial coral highlight in the center on cream background */
.about-solution-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 55%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.about-solution-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about-solution-header .section-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 16px;
}

.about-solution-header h2 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: var(--color-white);
}

.solution-split-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    z-index: 1;
}

/* The vertical divider between the two columns */
.solution-divider {
    width: 1px;
    margin: 0 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.3) 30%, rgba(255, 107, 53, 0.3) 70%, transparent);
    align-self: stretch;
    position: relative;
}

.solution-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: var(--color-gold);
    background: var(--color-cream-light);
    padding: 8px 4px;
    opacity: 0.6;
}

.solution-card {
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--color-white);
    border: 1px solid rgba(26, 18, 8, 0.08);
    box-shadow: 0 10px 30px rgba(26, 18, 8, 0.06);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.solution-card:hover {
    background: var(--color-white);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 18px 45px rgba(26, 18, 8, 0.10);
    transform: translateY(-4px);
}

.solution-card-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
    opacity: 0.8;
}

.solution-card-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.solution-card-body {
    font-size: 16px;
    color: rgba(26, 18, 8, 0.70);
    line-height: 1.75;
}

.solution-card-body strong {
    color: var(--color-text-dark);
    font-weight: 600;
}


/* ==========================================================================
   4. MANIFESTO SECTION (Full-width centered, dark)
   ========================================================================== */
.about-manifesto-section {
    position: relative;
    padding: 150px 8%;
    background: transparent;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Radial glow behind the text */
.manifesto-bloom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.18), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.manifesto-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.manifesto-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 40px;
    opacity: 0.7;
}

.manifesto-text {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 46px);
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.manifesto-text .manifesto-highlight {
    color: var(--color-gold);
    font-style: italic;
}

.manifesto-line-break {
    display: block;
    margin-top: 0.55em;
}

.manifesto-closing {
    margin-top: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.manifesto-closing::before,
.manifesto-closing::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}


/* ==========================================================================
   6. FINAL CTA SECTION (Cream white on about page)
   ========================================================================== */
.about-final-section {
    background: transparent;
    position: relative;
}

.about-final-section .final-h {
    color: var(--color-text-dark);
}

.about-final-section .final-sub {
    color: rgba(26, 18, 8, 0.7);
}

.about-final-section .final-logo {
    filter: invert(1);
}

.about-final-section .final-bloom {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0) 60%);
}

.about-final-section .capture {
    background: rgba(26, 18, 8, 0.04);
    border-color: rgba(26, 18, 8, 0.12);
}

.about-final-section .capture input {
    color: #1A1208;
}

.about-final-section .capture input::placeholder {
    color: rgba(26, 18, 8, 0.45);
}


/* ==========================================================================
   ABOUT PAGE RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    .about-problem-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .problem-badge-col {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-badge {
        flex: 1;
        min-width: 160px;
    }

    .solution-split-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .solution-divider {
        display: none;
    }

    .solution-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-island {
        padding: 40px 28px 36px;
        width: 90%;
    }

    .about-problem-section,
    .about-solution-section {
        padding: 60px 20px;
    }

    .about-manifesto-section {
        padding: 80px 20px;
    }

    .manifesto-text {
        font-size: clamp(22px, 6vw, 32px);
    }

    .solution-card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .about-nav-back span:last-child {
        display: none; /* hide "Back to Home" label, show only arrow */
    }
    
    .problem-badge-col {
        flex-direction: column;
    }
    .stat-badge { min-width: 100%; }
    
    .about-problem-section,
    .about-solution-section {
        padding: 50px 20px;
    }

    /* Mobile Typography Scale Overrides */
    .about-hero-title {
        font-size: 28px !important;
        letter-spacing: -1px;
    }
    .about-hero-subtitle {
        font-size: 14px !important;
    }
    .about-problem-title {
        font-size: 26px !important;
        letter-spacing: -1px;
    }
    .stat-badge .stat-number {
        font-size: 34px !important;
    }
    .stat-badge .stat-label {
        font-size: 12px !important;
    }
    .manifesto-title {
        font-size: 24px !important;
        letter-spacing: -0.8px;
    }
    .manifesto-text {
        font-size: 16px !important;
    }
    .solution-title {
        font-size: 22px !important;
        letter-spacing: -0.5px;
    }
}
