@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --ink: #0f172a;
    --muted: #64748b;
    --surface: #ffffff;
    --line: #e2e8f0;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --accent-gradient: linear-gradient(135deg, #ff007a 0%, #7928ca 50%, #4f46e5 100%);
    --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 14px 35px -5px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --shadow-neon: 0 15px 35px rgba(0, 242, 254, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background-color: #0b132b;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 242, 254, 0.12) 0%, transparent 40rem),
        radial-gradient(circle at 90% 90%, rgba(121, 40, 202, 0.15) 0%, transparent 40rem),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50rem);
    background-attachment: fixed;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
.shell { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

/* Site Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}
.brand:hover { transform: scale(1.03); }

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--primary-gradient);
    color: #0f172a;
    border-radius: 16px;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.4);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav a {
    text-decoration: none;
    color: #94a3b8;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 99px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}
.nav a.active {
    color: #0f172a;
    background: var(--primary-gradient);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
}

/* Hero Section with HD Photo Overlay */
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    padding: 30px 0 60px;
}

.hero-main-banner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    padding: 44px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(13, 148, 136, 0.78) 50%, rgba(79, 70, 229, 0.85) 100%), url('/assets/hero_bg.png') center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 242, 254, 0.15);
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 99px;
    padding: 6px 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 16px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 10px 0 20px;
    color: #ffffff;
}

.gradient-text-neon {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: rgba(241, 245, 249, 0.92);
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.02rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.button.primary-neon {
    color: #0f172a;
    border: none;
    background: var(--primary-gradient);
    box-shadow: 0 12px 28px rgba(0, 242, 254, 0.4);
}
.button.primary-neon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0, 242, 254, 0.55);
    color: #0f172a;
}
.button.secondary-glass {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
.button.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px);
    color: #ffffff;
}

.hero-panel {
    position: relative;
    border-radius: 32px;
    color: white;
    padding: 36px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}
.panel-label {
    display: inline-block;
    background: var(--accent-gradient);
    border-radius: 99px;
    padding: 5px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    line-height: 1.2;
    font-weight: 800;
    margin: 16px 0 24px;
    color: #ffffff;
}
.feature-list {
    display: grid;
    gap: 14px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.98rem;
    color: #f1f5f9;
}
.feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Motivation Cards Section */
.motivation-section {
    padding: 30px 0 60px;
}
.section-header {
    text-align: center;
    margin-bottom: 36px;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 8px 0 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 40px;
}
.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.card-motivation {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.card:hover,
.card-motivation:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
}

.status,
.card-badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 99px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: rgba(0, 242, 254, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}
.card-badge.cyan { background: rgba(0, 242, 254, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.card-badge.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(192, 132, 252, 0.3); }
.card-badge.gold { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }

.card-icon-large {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.card h3,
.card-motivation h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: #ffffff;
}
.meeting-number {
    color: #38bdf8;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
}
.card p,
.card-motivation p {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 24px;
}
.card p strong,
.card-motivation p strong {
    color: #f1f5f9;
}

.card .button,
.card-motivation .button {
    margin-top: auto;
    width: 100%;
}

.button.primary {
    color: #0f172a;
    border: none;
    background: var(--primary-gradient);
    box-shadow: 0 12px 28px rgba(0, 242, 254, 0.4);
}
.button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0, 242, 254, 0.55);
    color: #0f172a;
}

.info-strip {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    margin-top: 30px;
    backdrop-filter: blur(14px);
    color: #94a3b8;
    flex-wrap: wrap;
}
.info-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.info-item span,
.info-item span a {
    color: #38bdf8;
    text-decoration: none;
}
.info-item span a:hover {
    text-decoration: underline;
}

/* Quote Section */
.quote-banner {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(236, 72, 153, 0.25) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 36px;
    text-align: center;
    backdrop-filter: blur(12px);
    margin-bottom: 60px;
}
.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 12px;
}
.quote-author {
    color: #38bdf8;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    padding: 24px 0 36px;
    font-size: 0.9rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Page Head for other pages */
.page-head {
    text-align: center;
    padding: 48px 0 36px;
}
.page-head h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #ffffff;
    margin-bottom: 12px;
}
.page-head p {
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.05rem;
}

.breadcrumb {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    padding-top: 18px;
}
.breadcrumb a {
    text-decoration: none;
    color: #38bdf8;
    font-weight: 700;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 820px) {
    .site-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 0;
    }
    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav::-webkit-scrollbar { display: none; }
    .nav a {
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 9px 16px;
        font-size: 0.88rem;
    }
    .hero {
        grid-template-columns: 1fr;
        padding: 16px 0 36px;
        gap: 24px;
    }
    .hero-main-banner {
        padding: 28px 22px;
        border-radius: 24px;
    }
    .hero p {
        font-size: 1.02rem;
    }
    .hero-panel {
        padding: 26px 20px;
        border-radius: 24px;
    }
    .panel-title {
        font-size: 1.5rem;
    }
    .grid, .grid.three {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .actions {
        flex-direction: column;
    }
    .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .shell {
        width: calc(100% - 24px);
    }
    h1 {
        font-size: 2.2rem;
    }
    .card-motivation {
        padding: 22px 18px;
        border-radius: 22px;
    }
}
