﻿:root {
    --bg-0: #07131a;
    --bg-1: #0c2029;
    --bg-2: #12303d;
    --surface: rgba(10, 27, 35, 0.9);
    --surface-2: rgba(13, 34, 44, 0.92);
    --line: rgba(152, 186, 200, 0.25);
    --text: #e8f4f8;
    --muted: #95acb5;
    --brand: #25D366;
    --brand-2: #25D366;
    --danger: #ff6f6f;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 13px;
    --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.3);
    --mobile-width: min(100% - 16px, 420px);
}

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

html,
body {
    min-height: 100%;
}

body {
    font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 4%, rgba(23, 182, 215, 0.18), transparent 34%),
        radial-gradient(circle at 90% 0%, rgba(34, 226, 122, 0.22), transparent 30%),
        linear-gradient(148deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
    overflow-x: hidden;
    padding: 10px 0 0;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: min(58vw, 420px);
    height: min(58vw, 420px);
    right: -150px;
    top: -170px;
    background: radial-gradient(circle, rgba(34, 226, 122, 0.18), transparent 72%);
}

body::after {
    width: min(48vw, 360px);
    height: min(48vw, 360px);
    left: -140px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(23, 182, 215, 0.2), transparent 70%);
}

header,
.container,
.container-form,
.info-box {
    width: var(--mobile-width);
    margin-inline: auto;
}

header {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface), var(--surface-2));
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
}

header img {
    width: 36px;
    height: 36px;
}

header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ddf6ff;
}

.container {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(150deg, rgba(11, 29, 38, 0.95), rgba(9, 22, 29, 0.93));
    box-shadow: var(--shadow-lg);
    padding: 20px 16px;
    text-align: center;
}

.acesso-liberado {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(122, 241, 175, 0.45);
    background: linear-gradient(140deg, rgba(34, 226, 122, 0.22), rgba(34, 226, 122, 0.1));
    color: #c9f9df;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.container h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    line-height: 1.16;
    margin-bottom: 14px;
}

ul {
    list-style: none;
    width: min(100%, 340px);
    margin-inline: auto;
    text-align: left;
    display: grid;
    gap: 9px;
}

ul li {
    font-size: clamp(0.96rem, 3.6vw, 1.05rem);
    font-weight: 600;
    line-height: 1.42;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

ul li::before {
    content: "";
    width: 9px;
    height: 9px;
    min-width: 9px;
    border-radius: 999px;
    margin-top: 0.44em;
    background: linear-gradient(180deg, #ff8c83, #ff6559);
    box-shadow: 0 0 0 4px rgba(255, 111, 111, 0.16);
}

.fotos-container {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.logo {
    width: 100%;
    max-width: 390px;
    border-radius: 18px;
    border: 1px solid rgba(153, 187, 200, 0.2);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.container-form {
    margin-top: 12px;
}

.form {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(8, 20, 26, 0.95), rgba(8, 19, 25, 0.95));
    box-shadow: var(--shadow-lg);
    padding: 16px;
    display: grid;
    gap: 11px;
}

.form label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.form input {
    border: 1px solid rgba(147, 184, 197, 0.35);
    border-radius: 12px;
    background: rgba(229, 245, 250, 0.07);
    color: #f0fbff;
    font-size: 1rem;
    padding: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input::placeholder {
    color: rgba(217, 236, 242, 0.56);
}

.form input:focus {
    border-color: rgba(55, 219, 136, 0.86);
    box-shadow: 0 0 0 3px rgba(34, 226, 122, 0.18);
}

.form button {
    border: none;
    border-radius: 14px;
    background: linear-gradient(132deg, var(--brand), var(--brand-2));
    color: #052118;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 14px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(34, 226, 122, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(34, 226, 122, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.form button:active {
    transform: translateY(0);
}

.info-box {
    margin-top: 12px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(150deg, rgba(10, 27, 35, 0.93), rgba(8, 21, 28, 0.9));
    box-shadow: var(--shadow-md);
    padding: 16px;
}

.realtime-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--danger);
    box-shadow: 0 0 0 0 rgba(255, 111, 111, 0.8);
    animation: pulseLive 1.2s infinite;
}

.realtime-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffd2d2;
    animation: blinkText 1.1s infinite;
}

.realtime-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.realtime-item {
    border: 1px solid rgba(149, 183, 196, 0.2);
    border-radius: 10px;
    background: rgba(8, 18, 25, 0.6);
    padding: 8px 10px;
    font-size: 0.86rem;
    color: #d7edf4;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.realtime-item strong {
    color: #9ed2df;
    font-weight: 600;
}

.realtime-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(138, 173, 185, 0.25);
    background: rgba(229, 245, 250, 0.1);
    overflow: hidden;
}

.realtime-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #25D366, #25D366);
    box-shadow: 0 0 16px rgba(34, 226, 122, 0.5);
    transition: width 0.35s ease;
}

.realtime-note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
}

@keyframes blinkText {
    0%,
    45%,
    100% {
        opacity: 1;
    }

    60%,
    80% {
        opacity: 0.35;
    }
}

@keyframes pulseLive {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 111, 111, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 111, 111, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 111, 111, 0);
    }
}

.footer {
    margin-top: 14px;
    padding: 18px 12px 24px;
    border-top: 1px solid rgba(145, 180, 193, 0.2);
    background: linear-gradient(180deg, rgba(4, 12, 18, 0.5), rgba(4, 11, 15, 0.9));
}

.footer-content {
    width: min(100%, 580px);
    margin: 0 auto;
}

.footer-copyright {
    text-align: center;
    color: #d7edf5;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-disclaimer {
    color: #88a0aa;
    font-size: 0.76rem;
    line-height: 1.58;
    text-align: left;
}

.footer-link {
    color: #98f6c6;
    text-decoration: none;
    font-weight: 700;
}

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

.hero-subcopy {
    margin: -2px auto 14px;
    width: min(100%, 350px);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #b9d4dd;
}

.realtime-shield {
    margin-top: 10px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #d7ffe8;
    border: 1px solid rgba(34, 226, 122, 0.34);
    border-radius: 999px;
    padding: 6px 10px;
    background: linear-gradient(140deg, rgba(34, 226, 122, 0.2), rgba(23, 182, 215, 0.12));
}

/* --- Zap Scan Rebrand --- */
:root {
    --bg-0: #1b0f19;
    --bg-1: #291626;
    --bg-2: #3a2240;
    --surface: rgba(34, 18, 32, 0.9);
    --surface-2: rgba(48, 24, 44, 0.92);
    --line: rgba(246, 173, 209, 0.24);
    --text: #ffeef8;
    --muted: #d8aac6;
    --brand: #ff6fa8;
    --brand-2: #25D366;
    --danger: #ff5c7a;
}

body.theme-feminino {
    --bg-0: #1b0f19;
    --bg-1: #291626;
    --bg-2: #3a2240;
    --brand: #ff6fa8;
    --brand-2: #25D366;
    --danger: #ff5c7a;
}

body.theme-masculino {
    --bg-0: #1b0f19;
    --bg-1: #291626;
    --bg-2: #3a2240;
    --surface: rgba(34, 18, 32, 0.9);
    --surface-2: rgba(48, 24, 44, 0.92);
    --line: rgba(246, 173, 209, 0.24);
    --text: #ffeef8;
    --muted: #d8aac6;
    --brand: #ff6fa8;
    --brand-2: #25D366;
    --danger: #ff5c7a;
}

header {
    justify-content: flex-start;
}

.brand-shell {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy h2 {
    margin: 0;
    font-size: 1.06rem;
    color: #fff3fb;
}

.brand-copy p {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.3;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff5fb;
    border: 1px solid rgba(255, 170, 208, 0.44);
    background: linear-gradient(140deg, rgba(255, 108, 169, 0.38), rgba(255, 154, 125, 0.2));
}

.container ul {
    gap: 8px;
}

.container ul li {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.92rem;
}

.container ul li::before {
    display: none;
}

.app-preview {
    margin-top: 14px;
    border: 1px solid rgba(255, 183, 219, 0.26);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(46, 20, 41, 0.95), rgba(27, 14, 30, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 26px rgba(0, 0, 0, 0.35);
    padding: 12px;
    display: grid;
    gap: 8px;
    text-align: left;
}

.theme-masculino .app-preview {
    border-color: rgba(255, 183, 219, 0.26);
    background: linear-gradient(160deg, rgba(46, 20, 41, 0.95), rgba(27, 14, 30, 0.92));
}

.app-preview-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffe8f5;
}

.app-online {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 105, 147, 0.5);
    background: rgba(255, 74, 132, 0.2);
    color: #ffd8e8;
    animation: pulseLive 1.2s infinite;
}

.app-chat {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    padding: 9px 10px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #ffeef9;
    animation: appSlideIn 0.8s ease both;
}

.app-chat:nth-child(2) {
    animation-delay: 0.1s;
}

.app-chat:nth-child(3) {
    animation-delay: 0.22s;
}

.app-chat:nth-child(4) {
    animation-delay: 0.34s;
}

.app-chat.danger {
    border-color: rgba(255, 103, 148, 0.52);
    background: linear-gradient(120deg, rgba(255, 82, 137, 0.28), rgba(255, 63, 109, 0.18));
    color: #ffe8f0;
    box-shadow: 0 0 0 1px rgba(255, 112, 156, 0.18), 0 0 18px rgba(255, 74, 132, 0.16);
}

.theme-masculino .app-chat.danger {
    border-color: rgba(255, 103, 148, 0.52);
    background: linear-gradient(120deg, rgba(255, 82, 137, 0.28), rgba(255, 63, 109, 0.18));
}

.form button {
    color: #2a071a;
}

@keyframes appSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-legal-note {
    margin-top: 8px;
    text-align: center;
    font-size: 0.74rem;
    line-height: 1.4;
    color: #ffe7f2;
    border: 1px solid rgba(255, 170, 205, 0.3);
    border-radius: 10px;
    padding: 7px 8px;
    background: linear-gradient(140deg, rgba(255, 114, 169, 0.2), rgba(255, 152, 122, 0.12));
}

body.theme-masculino .privacy-legal-note {
    border-color: rgba(255, 170, 205, 0.3);
    color: #ffe7f2;
    background: linear-gradient(140deg, rgba(255, 114, 169, 0.2), rgba(255, 152, 122, 0.12));
}

/* --- Pink Global Lock --- */
body {
    background:
        radial-gradient(circle at 14% 5%, rgba(255, 132, 190, 0.22), transparent 34%),
        radial-gradient(circle at 90% 0%, rgba(255, 170, 120, 0.2), transparent 32%),
        linear-gradient(150deg, #1b0f19, #291626 52%, #3a2240 100%);
}

body::before {
    background: radial-gradient(circle, rgba(255, 111, 168, 0.22), transparent 72%);
}

body::after {
    background: radial-gradient(circle, rgba(255, 155, 125, 0.22), transparent 70%);
}

.realtime-progress-fill,
.progress-fill {
    background: linear-gradient(90deg, #ff6fa8, #25D366) !important;
    box-shadow: 0 0 16px rgba(255, 111, 168, 0.45) !important;
}

.form input:focus {
    border-color: rgba(255, 132, 190, 0.86);
    box-shadow: 0 0 0 3px rgba(255, 111, 168, 0.2);
}

.realtime-shield {
    color: #ffe8f4;
    border: 1px solid rgba(255, 170, 205, 0.38);
    background: linear-gradient(140deg, rgba(255, 114, 169, 0.2), rgba(255, 152, 122, 0.12));
}

.footer-link {
    color: #ffc6df;
}

.container-top.photo-container {
    width: var(--mobile-width);
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
}

.photo-container img {
    width: min(100%, 360px);
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 186, 220, 0.34);
    display: block;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.progress-text {
    color: #ffd9eb;
}

/* --- Index Clean Focus --- */
body.page-clean {
    background:
        radial-gradient(circle at 10% -8%, rgba(255, 120, 182, 0.38), transparent 36%),
        radial-gradient(circle at 92% -10%, rgba(37, 211, 102, 0.22), transparent 32%),
        radial-gradient(circle at 85% 76%, rgba(255, 92, 163, 0.2), transparent 36%),
        linear-gradient(154deg, #210f22 0%, #341838 46%, #251229 100%);
    background-attachment: fixed;
}

body.page-clean::before {
    width: min(62vw, 440px);
    height: min(62vw, 440px);
    right: -165px;
    top: -185px;
    background: radial-gradient(circle, rgba(255, 111, 170, 0.3), transparent 70%);
    animation: indexAuraPulse 10s ease-in-out infinite;
}

body.page-clean::after {
    width: min(52vw, 380px);
    height: min(52vw, 380px);
    left: -150px;
    bottom: -155px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 70%);
    animation: indexAuraFloat 11s ease-in-out infinite;
}

.page-clean header {
    border-color: rgba(255, 183, 219, 0.42);
    background: linear-gradient(145deg, rgba(59, 26, 53, 0.95), rgba(40, 19, 43, 0.93));
    box-shadow: 0 10px 24px rgba(255, 98, 165, 0.16);
}

.page-clean .container h2 {
    background: linear-gradient(94deg, #fff5fb 0%, #ffd6ea 62%, #d8ffd8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.page-clean {
    padding-top: 14px;
}

.page-clean header {
    margin-bottom: 10px;
}

.page-clean .clean-hero-card {
    padding: 18px 16px 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 176, 212, 0.46);
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 122, 183, 0.24), transparent 42%),
        radial-gradient(circle at 92% 0%, rgba(37, 211, 102, 0.18), transparent 34%),
        linear-gradient(150deg, rgba(62, 24, 54, 0.95), rgba(39, 18, 39, 0.93));
    box-shadow: 0 16px 30px rgba(255, 98, 165, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.page-clean .clean-hero-card::after {
    content: "";
    position: absolute;
    inset: -45% -35% auto;
    height: 78%;
    background: linear-gradient(95deg, rgba(255, 111, 168, 0.16), rgba(37, 211, 102, 0.14), rgba(255, 111, 168, 0.16));
    filter: blur(10px);
    transform: translateX(-38%) rotate(4deg);
    animation: indexGradientFlow 8s ease-in-out infinite;
    pointer-events: none;
}

.page-clean .container h2 {
    margin-bottom: 8px;
}

.page-clean .clean-subcopy {
    margin: 0 auto;
    width: min(100%, 310px);
    font-size: 0.86rem;
    color: #efcfe0;
}

.page-clean .clean-form-wrap {
    margin-top: 10px;
    position: relative;
}

.page-clean .clean-form {
    padding: 16px;
    gap: 10px;
    border: 1px solid rgba(255, 185, 220, 0.36);
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.12), transparent 34%),
        linear-gradient(148deg, rgba(54, 23, 48, 0.95), rgba(35, 17, 36, 0.95));
    box-shadow: 0 14px 28px rgba(255, 94, 163, 0.2);
}

.page-clean .clean-form label {
    font-size: 0.92rem;
    color: #ffe8f4;
}

.page-clean .clean-help {
    text-align: center;
    margin-top: 8px;
    font-size: 0.74rem;
    color: #e8c2d6;
}

.page-clean .footer {
    margin-top: 12px;
}

.page-clean .device-step-card {
    width: var(--mobile-width);
    margin: 10px auto 0;
    border: 1px solid rgba(255, 174, 210, 0.38);
    border-radius: 20px;
    background:
        radial-gradient(circle at 6% 0%, rgba(255, 115, 176, 0.2), transparent 40%),
        radial-gradient(circle at 96% 8%, rgba(37, 211, 102, 0.14), transparent 34%),
        linear-gradient(150deg, rgba(52, 22, 47, 0.94), rgba(33, 17, 35, 0.92));
    box-shadow: 0 14px 30px rgba(255, 99, 165, 0.22);
    padding: 14px;
    text-align: center;
}

.page-clean .device-step-kicker {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(255, 194, 223, 0.42);
    background: rgba(255, 122, 183, 0.16);
    color: #ffe8f4;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    margin-bottom: 8px;
}

.page-clean .device-step-card h3 {
    margin: 0;
    color: #fff2fa;
    font-size: 0.95rem;
}

.page-clean .device-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.page-clean .device-option {
    border: 1px solid rgba(255, 186, 220, 0.34);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffeaf5;
    padding: 10px 8px;
    cursor: pointer;
    display: grid;
    justify-items: center;
    gap: 4px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-clean .device-option:hover {
    transform: translateY(-1px);
}

.page-clean .device-option.is-selected {
    border-color: rgba(255, 132, 190, 0.86);
    background: linear-gradient(135deg, rgba(255, 113, 171, 0.34), rgba(37, 211, 102, 0.18));
    box-shadow: 0 0 0 1px rgba(255, 152, 203, 0.28), 0 8px 18px rgba(255, 106, 173, 0.24);
}

.page-clean .device-icon {
    font-size: 1.08rem;
    line-height: 1;
}

.page-clean .device-text {
    font-size: 0.84rem;
    font-weight: 700;
}

.page-clean .device-selected {
    margin-top: 9px;
    font-size: 0.78rem;
    color: #f0cfe0;
}

.page-clean #phoneStep.is-locked .clean-form {
    opacity: 0.58;
    filter: saturate(0.75);
    pointer-events: none;
}

.page-clean #phoneStep .form-step-tag {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(255, 195, 227, 0.44);
    background: rgba(255, 129, 187, 0.17);
    color: #ffe7f3;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 8px;
}

.page-clean .media-title {
    margin-top: 12px;
    color: #ffeaf5;
    font-size: 0.86rem;
    font-weight: 700;
}

.page-clean .media-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 9px;
}

.page-clean .media-option {
    border: 1px solid rgba(255, 186, 220, 0.34);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffeaf5;
    padding: 9px 6px;
    cursor: pointer;
    display: grid;
    justify-items: center;
    gap: 4px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-clean .media-option:hover {
    transform: translateY(-1px);
}

.page-clean .media-option.is-selected {
    border-color: rgba(255, 132, 190, 0.86);
    background: linear-gradient(135deg, rgba(255, 113, 171, 0.34), rgba(37, 211, 102, 0.18));
    box-shadow: 0 0 0 1px rgba(255, 152, 203, 0.28), 0 8px 18px rgba(255, 106, 173, 0.24);
}

.page-clean .media-icon {
    font-size: 1rem;
    line-height: 1;
}

.page-clean .media-text {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}




.page-clean .media-selected {
    margin-top: 8px;
    font-size: 0.76rem;
    color: #f0cfe0;
}
@keyframes indexGradientFlow {
    0%,
    100% {
        transform: translateX(-38%) rotate(4deg);
        opacity: 0.62;
    }

    50% {
        transform: translateX(24%) rotate(4deg);
        opacity: 0.96;
    }
}

.completion-copy p + p {
    margin-top: 4px;
}






@keyframes indexAuraPulse {
    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08) translateY(8px);
        opacity: 1;
    }
}

@keyframes indexAuraFloat {
    0%,
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.72;
    }

    50% {
        transform: translateX(14px) translateY(-10px);
        opacity: 0.96;
    }
}


/* --- Popup Modal (Index) --- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 14px;
    background: rgba(18, 9, 18, 0.86);
    backdrop-filter: blur(8px);
}

.modal-content {
    width: min(100%, 420px);
    border-radius: 22px;
    border: 1px solid rgba(255, 183, 219, 0.36);
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 122, 183, 0.18), transparent 42%),
        radial-gradient(circle at 92% 0%, rgba(37, 211, 102, 0.14), transparent 34%),
        linear-gradient(150deg, rgba(62, 24, 54, 0.96), rgba(39, 18, 39, 0.94));
    box-shadow: 0 20px 42px rgba(255, 98, 165, 0.22);
    overflow: hidden;
}

.modal-body {
    padding: 20px 16px;
    text-align: center;
    display: grid;
    gap: 12px;
}

.partial-report-note {
    border: 1px solid rgba(255, 183, 219, 0.3);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 107, 169, 0.14), rgba(255, 158, 127, 0.12));
    padding: 12px 11px;
    text-align: left;
}

.partial-report-note p {
    margin: 0;
    color: #ffe8f3;
    font-size: 0.8rem;
    line-height: 1.38;
}

.partial-report-note p + p {
    margin-top: 5px;
}

.phone-display {
    color: #ffe8f4;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.progress-bar {
    width: 100%;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 183, 219, 0.36);
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    background: linear-gradient(90deg, #ff6fa8, #25D366);
    box-shadow: 0 0 16px rgba(255, 111, 168, 0.45);
}

.progress-text {
    margin-top: 7px;
    color: #ffd9eb;
    font-size: 0.95rem;
    font-weight: 700;
}

.gif-container {
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.completion-message {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.completion-copy {
    border: 1px solid rgba(255, 183, 219, 0.34);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 109, 170, 0.18), rgba(255, 157, 127, 0.14));
    padding: 14px 12px;
}

.completion-copy h3 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    color: #fff2f9;
}

.completion-copy p {
    margin: 0;
    color: #ffe3f0;
    font-size: 0.78rem;
    line-height: 1.38;
}


