@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a1f4d 0%, #0e2f66 30%, #118df0 70%, #4a90e2 100%);
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 1rem;
    overflow-x: hidden;
}

/* Animated Background Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 25s infinite ease-in-out;
    pointer-events: none;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2), transparent);
    bottom: -200px;
    left: -200px;
    animation-delay: 8s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(60px, -60px) scale(1.1);
    }
    50% {
        transform: translate(-40px, 40px) scale(0.95);
    }
    75% {
        transform: translate(40px, 60px) scale(1.05);
    }
}

/* Main Container - Apple Event Style */
.container {
    position: relative;
    z-index: 10;
    max-width: 880px;
    width: 100%;
    text-align: center;
    padding: 5rem 4rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(40px) saturate(180%);
    border-radius: 40px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 20px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s 0.1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.logo img {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.12));
}

/* Badge - Apple Event Style */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #118df0 0%, #0e2f66 100%);
    color: white;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 24px rgba(17, 141, 240, 0.35);
}

/* Heading - Large and Bold */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0a1f4d 0%, #0e2f66 40%, #118df0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeInUp 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

/* Subtitle */
.subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Description */
.description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 4rem;
    line-height: 1.75;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    font-weight: 400;
}

/* Features Preview - Apple Style Cards */
.features-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(17, 141, 240, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

/* Event Date - Apple Event Highlight */
.event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0e2f66 0%, #118df0 100%);
    border-radius: 24px;
    animation: fadeInUp 1.2s 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    box-shadow: 0 20px 50px rgba(17, 141, 240, 0.4);
}

.date-circle {
    background: rgba(255, 255, 255, 0.95);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.date-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0e2f66, #118df0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 700;
    color: #118df0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.date-info {
    text-align: left;
    color: white;
}

.date-year {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.date-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Launch Info - Simplified */
.launch-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.launch-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.launch-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.launch-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.launch-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #118df0, #0e2f66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.launch-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Footer */
.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #888;
    font-size: 0.95rem;
    animation: fadeInUp 1.2s 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    line-height: 1.7;
}

.footer strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .container {
        padding: 4rem 3rem;
        border-radius: 35px;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.35rem;
    }

    .description {
        font-size: 1.05rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 2rem 1rem;
    }

    .container {
        padding: 3rem 2rem;
        border-radius: 30px;
    }

    .logo img {
        height: 65px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.55rem 1.6rem;
        letter-spacing: 1.5px;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .subtitle {
        font-size: 1.15rem;
        margin-bottom: 1.2rem;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .features-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .feature-item {
        padding: 1.5rem 1.25rem;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .event-date {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .date-circle {
        width: 110px;
        height: 110px;
    }

    .date-number {
        font-size: 3.2rem;
    }

    .date-info {
        text-align: center;
    }

    .date-year {
        font-size: 2.5rem;
    }

    .date-tagline {
        font-size: 1rem;
    }

    .launch-info {
        gap: 1rem;
    }

    .launch-item {
        padding: 1.5rem 1rem;
    }

    .launch-icon {
        font-size: 2.2rem;
    }

    .launch-number {
        font-size: 1.75rem;
    }

    .launch-label {
        font-size: 0.75rem;
    }

    .footer {
        font-size: 0.88rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        padding: 1.5rem 0.75rem;
    }

    .container {
        padding: 2.5rem 1.5rem;
        border-radius: 25px;
    }

    .logo img {
        height: 55px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .description {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .feature-item {
        padding: 1.25rem 1rem;
    }

    .event-date {
        padding: 1.75rem 1.25rem;
    }

    .date-circle {
        width: 100px;
        height: 100px;
    }

    .date-number {
        font-size: 2.8rem;
    }

    .date-year {
        font-size: 2.2rem;
    }

    .launch-info {
        grid-template-columns: 1fr;
    }
}