/* ===================================
   AlignerZ Launch Recap Website
   Main Stylesheet
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-purple: #6B4EFF;
    --primary-purple-dark: #5339CC;
    --primary-purple-light: #8B6EFF;
    --gradient-start: #6B4EFF;
    --gradient-end: #B844FF;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --mid-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 78, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(107, 78, 255, 0.15);
    --shadow-lg: 0 8px 32px rgba(107, 78, 255, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--off-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-purple);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-purple-dark);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #6B4EFF 0%, #B844FF 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 68, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 78, 255, 0.3) 0%, transparent 50%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-date {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Audio Player - Hero */
.audio-player-hero {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.6s both;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-purple);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.player-info {
    flex: 1;
}

.track-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.player-timeline {
    width: 100%;
}

.timeline-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.timeline-progress {
    height: 100%;
    background: var(--white);
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.volume-slider {
    width: 100px;
    cursor: pointer;
}

.scroll-indicator {
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   MOVEMENT SECTION
   =================================== */

.movement-section {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-block {
    padding: 2rem;
    background: var(--off-white);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.content-block h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.highlight-box {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-author {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===================================
   COMMUNITY SECTION
   =================================== */

.community-section {
    background: var(--off-white);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple-light);
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.speaker-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.speaker-role {
    font-size: 0.875rem;
    color: var(--mid-gray);
}

.quote-text {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-timestamp {
    color: var(--mid-gray);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   TECHNICAL SECTION
   =================================== */

.technical-section {
    background: var(--white);
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.tech-card h3 {
    margin-bottom: 1rem;
}

.tech-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--mid-gray);
}

.tech-features {
    list-style: none;
    margin-top: 1rem;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.tech-features i {
    color: var(--primary-purple);
}

.tech-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.tech-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.benefit-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.technical-quote {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-purple);
    position: relative;
}

.technical-quote i {
    font-size: 2rem;
    color: var(--primary-purple);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.technical-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.technical-quote span {
    font-weight: 600;
    color: var(--primary-purple);
}

/* ===================================
   CULTURE SECTION
   =================================== */

.culture-section {
    background: var(--off-white);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.culture-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.culture-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.culture-card h3 {
    margin-bottom: 1rem;
}

.culture-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--off-white);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.culture-manifesto {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
}

.culture-manifesto h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manifesto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
}

.manifesto-item i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================
   MINDSET SECTION
   =================================== */

.mindset-section {
    background: var(--white);
}

.mindset-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mindset-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.mindset-card.primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 3rem;
}

.mindset-card.primary h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mindset-card.primary p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.mindset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mindset-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.mindset-card h4 {
    margin-bottom: 0.5rem;
}

.cta-box {
    background: var(--off-white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--mid-gray);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* ===================================
   PODCAST SECTION
   =================================== */

.podcast-section {
    background: var(--off-white);
}

.podcast-player {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.podcast-artwork {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.podcast-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.podcast-artwork:hover .podcast-overlay {
    opacity: 1;
}

.podcast-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-purple);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.podcast-play-btn:hover {
    transform: scale(1.1);
}

.podcast-details h3 {
    margin-bottom: 1rem;
}

.podcast-description {
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.podcast-controls-full {
    background: var(--off-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.podcast-progress-bar {
    margin-bottom: 1rem;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    width: 0%;
    transition: width 0.1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    color: var(--mid-gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.podcast-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.control-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.control-btn.main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    font-size: 1.5rem;
}

.control-btn.main:hover {
    transform: scale(1.05);
}

.podcast-volume {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--mid-gray);
}

.podcast-volume-slider {
    width: 150px;
    cursor: pointer;
}

.podcast-highlights {
    margin-top: 1.5rem;
}

.podcast-highlights h4 {
    margin-bottom: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: var(--off-white);
    border-radius: 8px;
}

.highlight-item i {
    color: var(--primary-purple);
    margin-top: 2px;
}

.transcript-toggle {
    text-align: center;
    margin-bottom: 2rem;
}

.transcript-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.transcript-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.transcript-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.transcript-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.transcript-header h4 {
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--mid-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--dark-gray);
}

.transcript-content {
    max-height: 500px;
    overflow-y: auto;
    color: var(--dark-gray);
}

.transcript-section {
    margin-bottom: 2rem;
}

.transcript-section p {
    margin-bottom: 0.5rem;
}

.transcript-section strong {
    color: var(--primary-purple);
}

/* ===================================
   COMMUNITY BUILDING SECTION
   =================================== */

.community-building-section {
    background: var(--off-white);
}

.community-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.stat-description {
    color: var(--mid-gray);
    line-height: 1.6;
}

.community-philosophy {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.community-philosophy h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-block {
    text-align: center;
    padding: 1.5rem;
}

.philosophy-block i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.philosophy-block h4 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.philosophy-block p {
    color: var(--mid-gray);
    line-height: 1.6;
    font-style: italic;
}

.community-quote-large {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
    text-align: center;
    position: relative;
}

.community-quote-large i {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.community-quote-large p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.community-quote-large span {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-social h4,
.footer-info h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: translateY(-3px);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-note {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-purple-light);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .podcast-player {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid,
    .quotes-grid,
    .technical-grid,
    .culture-grid,
    .mindset-grid,
    .community-stats-grid,
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .player-controls {
        flex-direction: column;
    }
    
    .volume-control {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .podcast-player {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .community-quote-large p {
        font-size: 1.2rem;
    }
    
    .community-philosophy {
        padding: 2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple-dark);
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: var(--white);
}