body.ios-page {
    display: flex;
    /* paints the canvas so overscroll never flashes white */
    background: #111;
}

.ios-page-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100vh;
    background-image: radial-gradient(
            ellipse 60% 40% at 15% 0%,
            rgba(161, 20, 255, 0.18),
            transparent 70%
        ),
        radial-gradient(ellipse 50% 35% at 90% 100%, rgba(184, 207, 252, 0.12), transparent 70%);
}

.ios-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 5vw 80px;
    color: #ffffff;
}

.ios-title {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 6vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-shadow: 0 0 5px #a114ff, 0 0 18px rgba(199, 198, 255, 0.6);
}

.ios-subtitle {
    margin: 22px 0 0;
    max-width: 640px;
    text-align: center;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.ios-steps {
    list-style: none;
    display: grid;
    gap: 22px;
    width: min(680px, 100%);
    margin: 48px 0 0;
    padding: 0;
}

.ios-step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 26px 28px;
    border-radius: 18px;
    border: 1px solid rgba(184, 207, 252, 0.22);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 24px rgba(161, 20, 255, 0.08);
}

.ios-step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(184, 207, 252, 0.45);
    background: rgba(184, 207, 252, 0.12);
    color: #b8cffc;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(184, 207, 252, 0.5);
}

.ios-step-body h2 {
    margin: 6px 0 0;
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ios-step-body p {
    margin: 10px 0 18px;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.ios-button {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: Avenir;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.ios-button:hover {
    transform: translateY(-1px);
}

.ios-button-primary {
    color: #ffffff;
    border: 1px solid rgba(184, 207, 252, 0.55);
    background: linear-gradient(135deg, rgba(184, 207, 252, 0.45), rgba(161, 20, 255, 0.38));
    box-shadow: 0 0 22px rgba(161, 20, 255, 0.35);
}

.ios-button-primary:hover {
    box-shadow: 0 0 30px rgba(161, 20, 255, 0.5);
}

.ios-button-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
}

.ios-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ios-note {
    margin: 40px 0 0;
    max-width: 560px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
}

.ios-note strong {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
    .ios-content {
        padding: 120px 6vw 60px;
    }

    .ios-step {
        flex-direction: column;
        gap: 14px;
        padding: 22px 20px;
    }

    .ios-button {
        display: block;
    }
}
