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

:root {
    --bg-primary: #f5f1eb;
    --bg-secondary: #ede8e0;
    --bg-tertiary: #e8e2d5;
    --text-primary: #3c3444;
    --text-secondary: #5a4d5e;
    --text-muted: #8b7a85;
    --accent-blue: #4a3d52;
    --accent-purple: #6b5970;
    --accent-green: #d4a574;
    --border-subtle: #ddd4c7;
    --border-highlight: #c9bfb0;
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #6b5970 100%);
    --gradient-accent: linear-gradient(135deg, #4a3d52 0%, #6b5970 100%);
    --shadow-sm: 0 1px 3px 0 rgba(60, 52, 68, 0.15);
    --shadow-md: 0 4px 12px 0 rgba(60, 52, 68, 0.2);
    --shadow-lg: 0 8px 25px 0 rgba(60, 52, 68, 0.3);
}

body {
    font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 241, 235, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link.active {
    color: var(--accent-blue);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(60, 52, 68, 0.15);
    min-width: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    padding: 8px 16px;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 8px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    color: var(--text-primary);
}

.dropdown-link.active {
    color: var(--accent-blue);
}

.discord-btn {
    background: var(--gradient-accent);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.mobile-nav {
    display: none;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--accent-blue);
}

.discord-mobile {
    background: var(--gradient-accent);
    color: var(--text-primary) !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    border: none !important;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, var(--bg-secondary) 0%, var(--bg-primary) 50%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(74, 61, 82, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 61, 82, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-blue);
    top: 20%;
    right: 10%;
    opacity: 0.1;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-purple);
    bottom: 30%;
    left: 15%;
    opacity: 0.08;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    top: 60%;
    right: 30%;
    opacity: 0.06;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(74, 61, 82, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(74, 61, 82, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.title-line-1 {
    display: block;
    color: var(--text-primary);
}

.title-line-2 {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-highlight);
}

.cta-btn.secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-blue);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo-showcase {
    position: relative;
}

.hero-logo {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

.stats-preview {
    display: flex;
    gap: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 64px;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.highlight-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.highlight-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Quick Links */
.quick-links {
    padding: 120px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.link-card {
    display: block;
    text-decoration: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.link-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.link-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-arrow {
    font-size: 18px;
    color: var(--accent-blue);
    font-weight: 600;
    float: right;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.footer-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.cmu-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .mission-text {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .mission, .quick-links {
        padding: 80px 0;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

/* About Page */
.about-main {
    padding: 80px 0;
}

.about-grid {
    display: block;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: var(--text-primary);
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.discord-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.discord-link:hover {
    text-decoration: underline;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

.about-logo-large {
    width: 240px;
    height: 240px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

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

.stat-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.benefits-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Team Page */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-member.featured {
    border-color: var(--accent-blue);
    background: var(--bg-tertiary);
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
}

.placeholder-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.placeholder-avatar.large {
    width: 120px;
    height: 120px;
    font-size: 36px;
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
}

.member-photo.large {
    width: 120px;
    height: 120px;
}

.member-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.join-team {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

.join-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.opportunity-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.opportunity-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.opportunity-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.join-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Events Page */
.events-main {
    padding: 80px 0;
}

.events-section {
    margin-bottom: 80px;
}

.events-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.no-events-state {
    text-align: center;
    padding: 64px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
}

.no-events-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.no-events-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.no-events-state p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.stay-updated {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.event-types {
    margin-bottom: 80px;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.event-type-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.event-type-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
}

.event-type-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.event-type-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.event-type-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.stay-updated-section {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 48px;
}

.update-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.update-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.update-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.update-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    font-size: 32px;
    margin-top: 8px;
}

.method-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.method-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.method-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.method-link:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    margin-top: 8px;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin-top: 8px;
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mailing List Section */
.mailing-list-section {
    background: var(--bg-tertiary);
    padding: 48px;
    border-radius: 16px;
    border: 2px solid var(--border-subtle);
}

.mailing-list-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.mailing-list-content {
    text-align: center;
}

.mailing-list-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.mailing-list-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.benefit-icon {
    font-size: 24px;
}

.benefit-item span:last-child {
    font-weight: 500;
    color: var(--text-primary);
}

.mailing-list-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-btn.large {
    font-size: 18px;
    padding: 20px 40px;
    font-weight: 600;
}

.mailing-list-note {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

.mailing-list-note strong {
    color: var(--accent-green);
    font-weight: 600;
}

.discord-contact {
    margin: 12px 0;
}

.discord-contact .discord-btn {
    display: inline-block;
    margin: 0;
}

.contact-details .method-link {
    display: inline-block;
    margin-top: 12px;
}

/* Join Us CTA Section */
.join-us-cta {
    text-align: center;
    padding: 48px 0;
    margin-top: 32px;
}

.join-us-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-us-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.join-us-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.join-us-btn {
    font-size: 16px;
    padding: 14px 28px;
    font-weight: 600;
}

/* Full Width Text Section */
.full-width-text {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.full-width-text .text-content {
    max-width: none;
    text-align: left;
}

.full-width-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.full-width-text p:first-child {
    font-weight: 600;
}

.full-width-text p:last-child {
    margin-bottom: 0;
}

.text-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--accent-blue);
    transition: all 0.2s ease;
}

.text-link:hover {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
}

.join-cta {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

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

.cta-stat .stat-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.cta-stat .stat-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Company Logos Section */
.company-logos {
    padding: 48px 0;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-subtle);
}

.logos-heading {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.company-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.company-logo[alt="Anthropic"] {
    height: 29px;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .company-logos {
        padding: 32px 0;
    }
    
    .logos-grid {
        gap: 32px;
    }
    
    .company-logo {
        height: 32px;
    }
    
    .company-logo[alt="Anthropic"] {
        height: 24px;
    }
    
    .logos-heading {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Event Cards */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.event-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.event-date {
    background: var(--accent-blue);
    color: white;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-month {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-day {
    font-size: 24px;
    font-weight: 700;
    margin-top: 4px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-time, .event-location {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.event-description {
    margin-top: 12px;
}

.event-description p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .event-date {
        align-self: flex-start;
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .event-day {
        font-size: 20px;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mailing-list-section {
        padding: 32px 24px;
    }
    
    .mailing-list-section h2 {
        font-size: 28px;
    }
    
    .mailing-list-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-btn.large {
        font-size: 16px;
        padding: 16px 32px;
        width: 100%;
        max-width: 280px;
    }
    
    .stay-updated,
    .join-actions,
    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .update-method {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .events-heading {
        font-size: 24px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
}