.about-hero { padding: 10rem 2rem 5rem; position: relative; z-index: 1; }
.about-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem; }
.about-hero h1 em { font-family: var(--font-serif); color: var(--accent-warm); font-weight: 800; }
.about-hero-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.about-hero-desc strong { color: var(--text); font-weight: 600; }
.founder-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden; }
.founder-card::after { content: ''; position: absolute; inset: -1px; border-radius: 20px; background: var(--gradient-1); z-index: -1; opacity: 0.06; }
.founder-name-lg { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.founder-title { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); letter-spacing: 0.04em; font-weight: 600; margin-bottom: 1.5rem; }
.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.f-stat { padding: 1rem; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; }
.f-stat-val { font-size: 1.6rem; font-weight: 900; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-stat-label { font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-mono); margin-top: 0.2rem; }
.founder-bio { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.story-section { background: var(--bg-elevated); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.story-content h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.5rem; }
.story-content h2 em { font-family: var(--font-serif); color: var(--accent-warm); font-weight: 800; }
.story-content p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.story-content p strong { color: var(--text); font-weight: 600; }
.story-timeline { position: relative; padding-left: 2rem; }
.story-timeline::before { content: ''; position: absolute; left: 0.45rem; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent), var(--border)); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -1.65rem; top: 0.3rem; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-elevated); }
.timeline-year { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.expertise-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.4s; position: relative; overflow: hidden; }
.expertise-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-1); opacity: 0; transition: opacity 0.4s; }
.expertise-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.expertise-card:hover::before { opacity: 1; }
.expertise-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.expertise-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.expertise-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 1024px) { .about-hero-inner, .story-grid { grid-template-columns: 1fr; } .expertise-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .expertise-grid { grid-template-columns: 1fr; } }
