/* ============================================
   Cihan Sasmaz - Modern Bento Portfolio
   ============================================ */

:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-1: #6366f1;
    --accent-2: #8b5cf6;
    --accent-3: #ec4899;
    --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Animated Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-1);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-2);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.3;
}

@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); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    max-width: 1200px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0 0 16px 16px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card.visible:hover {
    transform: translateY(-4px);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 0 40px;
}

.hero-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
}

/* Legacy - kept for reference */

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.card-hero-unified h1,
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Stats Card */
.card-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

/* Elevator Pitch - Legacy, now integrated into hero */

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Social Links Card */
.card-links h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Section Headers */
section {
    padding: 100px 0;
    position: relative;
}

/* Section Dividers */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient);
    opacity: 0.3;
    border-radius: 2px;
}

section:first-of-type::before {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--accent-1);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header h2,
.card h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1875rem;
    line-height: 1.6;
}

/* Ventures Grid */
.ventures-grid {
    grid-template-columns: repeat(2, 1fr);
}

.card-venture {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-venture.featured {
    grid-column: span 2;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.venture-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.card-venture.featured .venture-logo {
    width: 120px;
    height: 120px;
}

.venture-content {
    flex: 1;
}

.venture-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.venture-year {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.venture-status {
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.card-venture h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-venture p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.venture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.venture-tags span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* About Grid */
.about-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
}

.card-about {
    grid-row: span 2;
}

.card-about p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Focus Section */
.focus-section {
    padding: 80px 0;
}

.focus-cards {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.card-focus-simple {
    flex: 1;
    text-align: center;
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
}

.card-focus-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.card-focus-simple h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 8px;
}

.card-focus-simple p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Detailed Focus Cards */
.focus-cards-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.card-focus-detailed {
    padding: 36px;
}

.focus-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.card-focus-detailed h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-focus-detailed p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* Skills Grid */
.skills-grid {
    grid-template-columns: 1.5fr 1fr;
}

.skills-detailed {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.skills-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-category h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.card-skills {
    display: flex;
    flex-direction: column;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.skill:hover {
    border-color: var(--accent-1);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Press Card */
.press-list {
    margin-top: 16px;
}

.press-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.press-item:last-child {
    border-bottom: none;
}

.press-link {
    display: block;
    text-decoration: none;
    transition: background 0.2s ease;
    margin: 0 -16px;
    padding: 16px;
    border-radius: 8px;
    border-bottom: none !important;
}

.press-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.press-link .press-type {
    color: var(--accent-1);
}

.press-outlet {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.press-type {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    padding: 60px 0 120px;
}

.card-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 60px;
    background: var(--gradient);
    border: none;
    position: relative;
    overflow: hidden;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.card-cta h2 {
    color: white;
    margin-bottom: 16px;
    position: relative;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.card-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
    position: relative;
}

.card-cta .btn-primary {
    background: white;
    color: var(--accent-1);
    padding: 16px 40px;
    font-size: 1rem;
    position: relative;
}

.card-cta .btn-primary:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Legacy card-profile - no longer used */

/* Unified Hero Card */
.card-hero-unified {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.hero-main {
    flex: 1;
    min-width: 0;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.hero-avatar {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--accent-1), var(--accent-2)) border-box;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-title {
    flex: 1;
}

.hero-title .badge {
    margin-bottom: 8px;
}

.hero-title h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.hero-title .tagline {
    margin-bottom: 0;
    font-size: 1rem;
}

.hero-about {
    margin-bottom: 24px;
}

.hero-about p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hero-about p:last-child {
    margin-bottom: 0;
}

.hero-about strong {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding-left: 40px;
    border-left: 1px solid var(--glass-border);
    flex-shrink: 0;
}

/* Venture Cards with Logos */
.card-venture {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.card-venture .venture-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
}

.card-venture.featured {
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.card-venture.featured .venture-logo {
    width: 100px;
    height: 100px;
    padding: 12px;
}

/* Career Timeline Section */
.career {
    padding: 80px 0;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-1), var(--accent-2), var(--accent-3));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -54px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.15s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.25s; }
.timeline-item:nth-child(5) { animation-delay: 0.3s; }
.timeline-item:nth-child(6) { animation-delay: 0.35s; }
.timeline-item:nth-child(7) { animation-delay: 0.4s; }
.timeline-item:nth-child(8) { animation-delay: 0.45s; }
.timeline-item:nth-child(9) { animation-delay: 0.5s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-date {
    margin-bottom: 8px;
}

.date-range {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.timeline-content:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.timeline-content.has-logo {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.timeline-content:hover .timeline-logo {
    transform: scale(1.05);
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.timeline-tags span {
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.timeline-tags span:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* Active Timeline Item Highlight */
.timeline-item:first-child .timeline-content {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
}

.timeline-item:first-child::before {
    border-color: var(--accent-1);
    background: var(--accent-1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.timeline-location {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Speaking / Stage Section */
.speaking-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

/* Video Embed */
.card-video {
    padding: 0;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

/* Speaking Grid Full Width */
.speaking-grid-full {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0 auto 24px;
    gap: 24px;
}

/* Stage Gallery */
.stage-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.card-stage {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 180px;
    aspect-ratio: 16/9;
}

.card-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-stage:hover img {
    transform: scale(1.05);
}

.stage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.stage-event {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.stage-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
}

.card-press-list {
    display: flex;
    flex-direction: column;
}

.card-press-list h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Connect Card */
.card-connect h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    border-top: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card-hero-unified {
        flex-direction: column;
        gap: 24px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 48px;
        padding-left: 0;
        padding-top: 24px;
        border-left: none;
        border-top: 1px solid var(--glass-border);
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-about {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: flex;
    }

    main {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .card-hero-unified {
        padding: 28px 24px;
    }

    .hero-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .hero-avatar {
        width: 80px;
        height: 80px;
    }

    .hero-title h1 {
        font-size: 2rem;
    }

    .hero-about p {
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
    }

    .card-venture {
        flex-direction: column;
    }

    .card-venture .venture-logo {
        width: 60px;
        height: 60px;
    }

    .card-venture.featured {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .card-venture.featured .venture-logo {
        width: 80px;
        height: 80px;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-item::before {
        left: -28px;
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content.has-logo {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-logo {
        width: 60px;
        height: 60px;
    }

    .speaking-grid-full {
        grid-template-columns: 1fr;
    }

    .stage-gallery {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .card-video {
        min-height: auto;
    }

    .card-stage {
        min-height: 100px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .card-about {
        grid-column: auto;
    }

    .focus-cards {
        flex-direction: column;
    }

    .focus-cards-detailed {
        grid-template-columns: 1fr;
    }


    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skills-detailed {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 24px;
    }

    section {
        padding: 60px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .card-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Smooth page load */
.card {
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, background 0.3s ease;
}

.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }
