.ipads-page-shell {
    max-width: 1540px;
    margin: 0 auto;
    padding: 108px 32px 0;
}

.ipads-page-hero {
    margin: 0 auto;
    text-align: center;
}

.ipads-page-title {
    margin: 0;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.1px;
    text-align: center;
}

.ipads-coming-soon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    margin: 72px auto 56px;
    padding: 60px 32px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 30% 20%, rgba(50, 119, 255, 0.06), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(50, 119, 255, 0.04), transparent 40%),
        #f9f9fb;
    text-align: center;
}

.ipads-coming-soon-icon {
    margin-bottom: 28px;
    opacity: 0.85;
}

.ipads-coming-soon-title {
    margin: 0 0 16px;
    color: #0b0b0f;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ipads-coming-soon-description {
    max-width: 420px;
    margin: 0 0 36px;
    color: #6e6e73;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.ipads-mobile-break {
    display: none;
}

.ipads-coming-soon-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.ipads-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0071E3;
    opacity: 0.35;
    animation: ipadsDotPulse 1.4s ease-in-out infinite;
}

.ipads-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.ipads-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ipadsDotPulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.ipads-coming-soon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 980px;
    background: #0071E3;
    color: #ffffff;
    font-family: "SF Pro Display", "SF Pro Icons", "AOS Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ipads-coming-soon-button:hover,
.ipads-coming-soon-button:focus-visible {
    background: #0077ED;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.28);
    outline: none;
}

.ipads-coming-soon-button:active {
    transform: scale(0.98);
    box-shadow: none;
}

@media (max-width: 734px) {
    .ipads-page-shell {
        padding: 100px 20px 0;
    }

    .ipads-page-title {
        font-size: 24px;
    }

    .ipads-coming-soon-section {
        margin: 48px auto 40px;
        padding: 48px 24px;
        border-radius: 28px;
        min-height: 380px;
    }

    .ipads-coming-soon-title {
        font-size: 28px;
    }

    .ipads-coming-soon-description {
        font-size: 14px;
    }

    .ipads-mobile-break {
        display: inline;
    }
}
