        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #0A1F44;
            --red: #DC143C;
            --white: #FFFFFF;
            --cream: #F5F5F7;
            --dark: #1D1D1F;
            --light-gray: #86868B;
            --blue: #003B6F;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.85);
        }

        .nav-content {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0 40px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-size: 17px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            margin-left: -10px;
        }

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

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

        .nav-link {
            font-size: 14px;
            font-weight: 400;
            color: var(--dark);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .nav-link:hover {
            opacity: 1;
        }

        .leader-login-btn {
            padding: 8px 20px;
            background: var(--navy);
            color: white;
            border-radius: 980px;
            font-size: 13px;
            font-weight: 600;
            opacity: 1;
            transition: all 0.3s;
        }

        .leader-login-btn:hover {
            background: var(--red);
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--dark);
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0A1F44 0%, #003B6F 50%, #DC143C 100%);
            animation: gradient-shift 15s ease infinite;
            background-size: 200% 200%;
            padding-top: 44px;
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .stars-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.15;
            background-image:
                radial-gradient(2px 2px at 20% 30%, white, transparent),
                radial-gradient(2px 2px at 60% 70%, white, transparent),
                radial-gradient(1px 1px at 50% 50%, white, transparent),
                radial-gradient(1px 1px at 80% 10%, white, transparent),
                radial-gradient(2px 2px at 90% 60%, white, transparent),
                radial-gradient(1px 1px at 33% 80%, white, transparent),
                radial-gradient(1px 1px at 15% 90%, white, transparent);
            background-size: 200% 200%;
            animation: stars 60s linear infinite;
        }

        @keyframes stars {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 20px 20px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-logo {
            margin-bottom: 16px;
        }

        .hero-logo img {
            max-width: 500px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
        }

        .hero-title {
            font-size: 96px;
            font-weight: 700;
            letter-spacing: -4px;
            margin-bottom: 16px;
            line-height: 1.05;
        }

        .hero-subtitle {
            font-size: 32px;
            font-weight: 300;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: white;
            color: var(--navy);
            font-size: 16px;
            font-weight: 600;
            border-radius: 980px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .hero-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        .section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-eyebrow {
            font-size: 14px;
            font-weight: 600;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 64px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -2px;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .section-description {
            font-size: 21px;
            color: var(--light-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

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

        .card {
            background: var(--cream);
            border-radius: 28px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red), var(--blue));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(0, 59, 111, 0.1));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .card:hover::after {
            opacity: 1;
        }

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

        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
        }

        .card-icon {
            font-size: 56px;
            margin-bottom: 20px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

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

        .card-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .card-description {
            font-size: 16px;
            color: var(--light-gray);
            line-height: 1.5;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--red);
            font-size: 19px;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }

        .card-link::after {
            content: '→';
            transition: transform 0.3s;
        }

        .card:hover .card-link::after {
            transform: translateX(6px);
        }

        .about-section {
            background: var(--navy);
            color: white;
            padding: 50px 20px;
            position: relative;
            overflow: hidden;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content h2 {
            font-size: 56px;
            font-weight: 700;
            letter-spacing: -2px;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .about-content p {
            font-size: 21px;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .about-content .highlight {
            font-weight: 600;
            color: var(--red);
            opacity: 1;
        }

        .footer {
            background: linear-gradient(135deg, #0A1F44 0%, #003B6F 50%, #DC143C 100%);
            animation: gradient-shift 15s ease infinite;
            background-size: 200% 200%;
            color: white;
            padding: 40px 20px 16px;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 8px;
        }

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

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .footer-description {
            font-size: 12px;
            opacity: 0.7;
            max-width: 500px;
            margin: 0 auto 16px;
            display: none;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .social-link:hover {
            background: var(--red);
            transform: scale(1.1);
        }

        .footer-copyright {
            font-size: 11px;
            opacity: 0.5;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 60vh;
            }

            .nav-content {
                padding: 0 12px;
            }

            .nav-logo {
                margin-left: -8px;
                font-size: 15px;
            }

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

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 44px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: saturate(180%) blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-link {
                padding: 16px 20px;
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                font-size: 16px;
            }

            .nav-link:hover {
                background: rgba(0, 0, 0, 0.02);
            }

            .leader-login-btn {
                margin: 16px 20px;
                display: block;
                text-align: center;
                width: calc(100% - 40px);
            }

            .hero-content {
                text-align: center;
                padding-left: 20px;
            }

            .hero-logo img {
                max-width: 250px;
            }

            .hero-title {
                font-size: 40px;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .hero-btn {
                padding: 14px 28px;
                font-size: 17px;
            }

            .section {
                padding: 30px 20px;
            }

            .section-header {
                margin-bottom: 24px;
            }

            .section-title {
                font-size: 40px;
            }

            .section-description {
                font-size: 19px;
            }

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

            .card {
                padding: 24px;
            }

            .card-icon {
                font-size: 56px;
            }

            .card-title {
                font-size: 28px;
            }

            #rsvp {
                padding: 50px 20px !important;
            }

            .rsvp-title {
                font-size: 36px !important;
            }

            .rsvp-description {
                font-size: 17px !important;
            }

            .rsvp-card {
                padding: 28px 20px !important;
                border-radius: 24px !important;
            }

            .rsvp-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            .rsvp-grid > div {
                text-align: center !important;
            }

            .rsvp-card-title {
                font-size: 26px !important;
                text-align: center !important;
                margin-bottom: 20px !important;
                letter-spacing: -1px !important;
            }

            .rsvp-included {
                font-size: 16px !important;
            }

            .rsvp-emoji {
                display: none !important;
            }

            .rsvp-button {
                width: 100% !important;
                justify-content: center !important;
                padding: 16px 32px !important;
                font-size: 17px !important;
            }

            .about-section {
                padding: 40px 20px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 36px;
            }

            .about-content p {
                font-size: 19px;
            }

            .footer-logo img {
                width: 100px;
            }
        }

        html {
            scroll-behavior: smooth;
        }

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--red);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid white;
    outline-offset: 2px;
}
