/* ==================== ABOUT PAGE STYLES ==================== */
/* Variables necesarias para esta página */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --cream: #f8f6f3;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-800: #262626;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

/* ==================== HERO SECTION ==================== */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: #667eea;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: #764ba2;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: #f093fb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

.hero-grid-overlay {
    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: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) .word { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.6s; }

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ==================== STATS MARQUEE ==================== */
.stats-marquee {
    background: var(--black);
    padding: 24px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 80px;
    padding: 0 40px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.marquee-number {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    color: var(--white);
}

.marquee-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-divider {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== MISSION SECTION ==================== */
.mission-section {
    padding: 160px 24px;
    background: var(--white);
    position: relative;
}

.mission-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.mission-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.mission-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--black);
}

.mission-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
}

.mission-visual {
    position: relative;
}

.mission-card {
    background: var(--gray-100);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mission-stat {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    color: var(--black);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-section {
    padding: 160px 24px;
    background: var(--cream);
    position: relative;
}

.timeline-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-1);
    transition: height 0.3s ease;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 60px);
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.timeline-year {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.timeline-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    background: var(--accent);
}

/* ==================== FOUNDERS SECTION ==================== */
.founders-section {
    padding: 160px 24px;
    background: var(--white);
}

.founders-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.founders-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.founders-title-wrap {
    max-width: 500px;
}

.founders-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.founder-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--gray-100);
    padding: 48px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: transform 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-12px);
}

.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-card:hover::before {
    opacity: 0.05;
}

.founder-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.founder-name {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: auto;
    position: relative;
    z-index: 1;
}

.founder-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.founder-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--black);
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-4px);
}

/* ==================== AWARDS SECTION ==================== */
.awards-section {
    padding: 160px 24px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.awards-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
}

.awards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.awards-header {
    text-align: center;
    margin-bottom: 80px;
}

.awards-header .section-label {
    color: rgba(255,255,255,0.5);
}

.awards-header .section-title {
    color: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.award-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.award-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-12px);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 1.5;
}

.award-year {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.award-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.award-org {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ==================== VALUES SECTION ==================== */
.values-section {
    padding: 160px 24px;
    background: var(--white);
}

.values-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 100px;
}

.values-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.value-card {
    background: var(--gray-100);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.value-card.large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 60px;
    background: var(--gradient-dark);
    color: var(--white);
}

.value-card.large .value-title {
    color: var(--white);
}

.value-card.large .value-text {
    color: rgba(255,255,255,0.7);
}

.value-number {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    color: rgba(0,0,0,0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.value-card.large .value-number {
    color: rgba(255,255,255,0.1);
    font-size: 120px;
    top: 10px;
    right: 40px;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-card.large .value-icon {
    background: rgba(255,255,255,0.1);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.value-card.large .value-icon svg {
    stroke: var(--white);
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

.value-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ==================== TECH SECTION ==================== */
.tech-section {
    padding: 160px 24px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.tech-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.tech-visual {
    position: relative;
}

.tech-orb {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.tech-orb::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.tech-orb::after {
    content: '';
    position: absolute;
    inset: -50px;
    border: 1px dashed rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: spin 40s linear infinite reverse;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tech-orb-inner {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.tech-orb-inner svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent);
    stroke-width: 1;
    fill: none;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tech-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.tech-feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tech-feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 160px 24px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-title em {
    font-style: italic;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

.btn-secondary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--white);
    transform: translateY(-4px);
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .mission-wrapper,
    .tech-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .founders-cards {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .hero-description {
        font-size: 17px;
    }

    .founders-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .tech-orb {
        width: 280px;
        height: 280px;
    }

    .tech-orb-inner {
        width: 140px;
        height: 140px;
    }
}