@import url('../variables.css');

/* Page Header (shared) */
.page-header {
    min-height: 50vh;
    padding: 8rem var(--space-md) var(--space-2xl);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--teal-light) 0%, var(--white) 100%);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(78, 205, 196, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Hook Section */
.hook {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

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

.hook-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.6;
    color: var(--dark);
}

.hook-text .highlight {
    color: var(--teal);
    font-weight: 700;
}

/* Founder Visual */
.founder-visual {
    padding: var(--space-2xl) var(--space-md);
    background: var(--gray-100);
}

.founder-visual-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.founder-badge-icon {
    font-size: 1.25rem;
}

.founder-intro {
    text-align: center;
}

.founder-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.founder-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.founder-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

.founder-social-link:hover {
    background: var(--teal);
    color: var(--white);
}

.founder-social-link svg {
    width: 20px;
    height: 20px;
}

/* Story Section */
.story-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.story-section.alt-bg {
    background: var(--gray-100);
}

.story-inner {
    max-width: 800px;
    margin: 0 auto;
}

.story-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: var(--space-sm);
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: var(--space-lg);
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.story-content p {
    margin-bottom: var(--space-md);
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content strong {
    color: var(--dark);
    font-weight: 700;
}

.proof-image {
    margin-top: var(--space-xl);
}

.marathon-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.proof-caption {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
}

/* Callout Box */
.callout {
    background: var(--teal-light);
    border-left: 4px solid var(--teal);
    border-radius: 12px;
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.callout p {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* Quote Box */
.quote-box {
    background: var(--gray-100);
    border-radius: 16px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border: 2px solid var(--gray-200);
}

.quote-context {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.quote-context a {
    color: var(--teal-dark);
    text-decoration: underline;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.quote-text p {
    margin-bottom: var(--space-sm);
}

.quote-text p:last-child {
    margin-bottom: 0;
}

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

/* Status Banner */
.status-banner {
    padding: var(--space-2xl) var(--space-md);
    background: var(--coral-light);
    text-align: center;
}

.status-inner {
    max-width: 800px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.15);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 107, 107, 0);
    }
}

.status-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Values Section */
.values {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.values-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.values-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

/* CTA Section for About Page */
.cta {
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(135deg, var(--teal) 0%, var(--coral) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: var(--space-md);
}

/* Responsive */
@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-header {
        padding: 10rem 2rem 6rem;
    }

    .founder-visual-inner {
        grid-template-columns: 1fr 1fr;
    }

    .founder-intro {
        text-align: left;
    }

    .founder-social {
        justify-content: flex-start;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

