/* ============================================
   investiga.digital — Intelligence Bureau Design
   Professional Surveillance Agency UI
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-dark: #060b11;
    --bg-surface: #0d1520;
    --bg-card: rgba(13, 22, 35, 0.9);
    --panel-border: rgba(30, 215, 96, 0.15);
    --accent-glow: rgba(30, 215, 96, 0.35);
    --accent: #1ed760;
    --accent-secondary: #38bdf8;
    --danger: #ef4444;
    --warning: #f59e0b;
    --text-main: #e8edf5;
    --text-muted: #64748b;
    --glass-blur: blur(24px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --accent-rgb: 30, 215, 96;
    --secondary-rgb: 56, 189, 248;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "kern" 1;
}

/* ============ BACKGROUND ANIMATED EFFECTS ============ */

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Gradient Mesh Background */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(120px);
    animation: floatMesh 20s infinite ease-in-out alternate;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    top: -100px;
    left: -80px;
    animation-duration: 24s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-secondary);
    bottom: -120px;
    right: -100px;
    animation-delay: -8s;
    animation-duration: 28s;
    opacity: 0.05;
}

@keyframes floatMesh {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 35px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Noise Texture Overlay */
.background-effects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise" seed="2"/></filter><rect width="100%" height="100%" fill="rgba(255,255,255,0.01)" filter="url(%23noise)"/></svg>');
    pointer-events: none;
    opacity: 0.03;
}

/* ============ APP SHELL ============ */

.app-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-bottom: calc(16px + var(--safe-bottom));
}

/* ============ HEADER ============ */

.app-header {
    padding: 28px 0 18px;
    text-align: center;
    animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo .icon-glow {
    width: 32px;
    height: 32px;
    color: var(--accent);
    filter: drop-shadow(0 0 12px var(--accent-glow)) drop-shadow(0 0 4px rgba(30, 215, 96, 0.6));
    animation: glowPulse 3s ease-in-out infinite;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--text-main);
    line-height: 1.2;
}

.logo h1 span {
    color: var(--accent);
}

.subtitle {
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.70rem;
    margin-top: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Meta Partner Badge */
.meta-partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    background: #fff;
    border-radius: 48px;
    height: 42px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    backdrop-filter: blur(2px);
}

.meta-partner-left {
    background: linear-gradient(135deg, #0866FF 0%, #1d4ed8 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    padding: 0 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 0.75rem;
    line-height: 1.15;
    border-radius: 48px 0 0 48px;
    white-space: nowrap;
}

.meta-partner-left strong {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.meta-partner-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 16px 0 12px;
    background: #fff;
}

.meta-partner-right img {
    height: 13px;
    margin-bottom: 0px;
}

.business-partner {
    color: #1c2b33;
    font-size: 0.65rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* ============ TRUST BADGES ============ */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 14px 8px;
    border-radius: 14px;
    background: rgba(13, 22, 35, 0.5);
    border: 1px solid rgba(30, 215, 96, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.trust-badge:hover {
    background: rgba(30, 215, 96, 0.08);
    border-color: rgba(30, 215, 96, 0.3);
}

.trust-icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
    opacity: 0.9;
}

.trust-badge span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.4px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ============ INVESTIGATION COUNTER ============ */

.stats-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.counter-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(30, 215, 96, 0.8), 0 0 16px rgba(30, 215, 96, 0.4);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(30, 215, 96, 0.8), 0 0 16px rgba(30, 215, 96, 0.4); }
    50% { opacity: 0.4; box-shadow: 0 0 4px rgba(30, 215, 96, 0.4), 0 0 8px rgba(30, 215, 96, 0.2); }
}

.counter-row span {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.counter-number {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.counter-number span {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============ MAIN CONTENT ============ */

.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 6px;
}

/* ============ NAME CARD ============ */

.name-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 16px;
    padding: 18px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.name-card:hover {
    background: rgba(13, 22, 35, 0.95);
    border-color: rgba(30, 215, 96, 0.3);
    box-shadow: 0 8px 40px rgba(30, 215, 96, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.name-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.name-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.name-input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.name-input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 12px;
    padding: 14px 16px 14px 44px;
    color: var(--text-main);
    font-size: 0.98rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    letter-spacing: 0.2px;
}

.name-input-wrapper input::placeholder {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.name-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 215, 96, 0.2), inset 0 0 0 1px rgba(30, 215, 96, 0.1);
    background: rgba(0, 0, 0, 0.65);
}

/* ============ SECTION LABEL ============ */

.section-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    margin-top: 2px;
}

/* ============ PLATFORM BUTTONS ============ */

.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 11px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1.5px solid;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.platform-btn-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.platform-logo {
    width: 28px;
    height: 28px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.platform-btn span {
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2px;
}

.chevron-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.platform-btn:active {
    transform: scale(0.96);
}

.platform-btn:active .chevron-icon {
    transform: translateX(4px);
}

/* WhatsApp — Green */
.platform-btn.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.5);
}
.platform-btn.whatsapp .platform-logo,
.platform-btn.whatsapp span {
    color: #25D366;
}
.platform-btn.whatsapp .chevron-icon {
    color: rgba(37, 211, 102, 0.5);
}
.platform-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.7);
}
.platform-btn.whatsapp.active {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}
.platform-btn.whatsapp.active .platform-logo,
.platform-btn.whatsapp.active span,
.platform-btn.whatsapp.active .chevron-icon {
    color: #fff;
}

/* Instagram — Gradient */
.platform-btn.instagram {
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.5);
}
.platform-btn.instagram .platform-logo,
.platform-btn.instagram span {
    color: #E1306C;
}
.platform-btn.instagram .chevron-icon {
    color: rgba(225, 48, 108, 0.5);
}
.platform-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.7);
}
.platform-btn.instagram.active {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}
.platform-btn.instagram.active .platform-logo,
.platform-btn.instagram.active span,
.platform-btn.instagram.active .chevron-icon {
    color: #fff;
}

/* Messenger — Blue/Purple */
.platform-btn.messenger {
    background: rgba(0, 106, 255, 0.08);
    border-color: rgba(0, 106, 255, 0.5);
}
.platform-btn.messenger .platform-logo,
.platform-btn.messenger span {
    color: #006AFF;
}
.platform-btn.messenger .chevron-icon {
    color: rgba(0, 106, 255, 0.5);
}
.platform-btn.messenger:hover {
    background: rgba(0, 106, 255, 0.15);
    border-color: rgba(0, 106, 255, 0.7);
}
.platform-btn.messenger.active {
    background: linear-gradient(135deg, #006AFF 0%, #A033FF 100%);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 106, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}
.platform-btn.messenger.active .platform-logo,
.platform-btn.messenger.active span,
.platform-btn.messenger.active .chevron-icon {
    color: #fff;
}

/* ============ SEARCH CARD ============ */

.search-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 16px;
    padding: 18px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.search-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.search-platform-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2px;
}

.search-card-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* Search Input */
.search-box {
    position: relative;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-field {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 12px;
    padding: 16px 16px 16px 44px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 215, 96, 0.2), inset 0 0 0 1px rgba(30, 215, 96, 0.1);
    background: rgba(0, 0, 0, 0.65);
}

.input-wrapper input:focus + .search-icon {
    color: var(--accent);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(30, 215, 96, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 215, 96, 0.4);
}

.submit-btn:active {
    transform: scale(0.97) translateY(0);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.submit-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
    animation: none;
}

/* ============ STATUS MESSAGE / TERMINAL SCAN ============ */

.status-message {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-left: 3px solid var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--accent-secondary);
    line-height: 1.5;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 1px 0 rgba(56, 189, 248, 0.1), 0 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.status-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    opacity: 0.5;
}

.scan-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
    position: relative;
}

.scan-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent), #22c55e);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 12px rgba(30, 215, 96, 0.6), 0 0 24px rgba(56, 189, 248, 0.3);
    position: relative;
}

.scan-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    filter: blur(2px);
    animation: glideTrail 0.8s ease-in-out infinite;
}

@keyframes glideTrail {
    0% { transform: translateX(0); }
    100% { transform: translateX(10px); }
}

.scan-phrase-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 1.5em;
}

.scan-phrase-row span {
    min-height: 1.5em;
    display: flex;
    align-items: center;
}

.spinner {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 2.5px solid rgba(56, 189, 248, 0.2);
    border-top-color: var(--accent-secondary);
    border-right-color: var(--accent-secondary);
    border-radius: 50%;
    animation: spinSmooth 0.8s linear infinite;
}

@keyframes spinSmooth {
    to { transform: rotate(360deg); }
}

/* ============ RESULTS CARD ============ */

.results-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 16px;
    padding: 18px;
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.results-header h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

.results-header h2 .lucide {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.badge {
    background: rgba(30, 215, 96, 0.15);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(30, 215, 96, 0.2);
}

/* Result Target Info */
.result-target-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.result-target-info:hover {
    background: rgba(30, 215, 96, 0.08);
    border-color: rgba(30, 215, 96, 0.2);
}

.result-avatar-area {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    position: relative;
}

.result-avatar-area img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 16px rgba(30, 215, 96, 0.3), inset 0 0 12px rgba(30, 215, 96, 0.1);
}

.result-target-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-target-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}

.handle {
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.result-date {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.7;
}

/* ============ BLURRED REPORT ============ */

.report-blurred-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

/* Findings Summary Bar */
.findings-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.06) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
}

.findings-count {
    font-size: 0.77rem;
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.findings-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ef4444;
    margin: 0 4px;
}

.findings-severity-pills {
    display: flex;
    gap: 7px;
}

.severity-pill {
    padding: 4px 9px;
    border-radius: 20px;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.severity-pill.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.severity-pill.high {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.severity-pill.medium {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Blurred Content Section */
.blurred-report {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(239, 68, 68, 0.1);
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

/* Chat Preview (inside blurred section) */
.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.chat-message.sent {
    justify-content: flex-end;
}

.chat-message.received {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
    font-family: 'DM Sans', sans-serif;
}

.chat-message.sent .chat-bubble {
    background: #25D366;
    color: #000;
    border-radius: 18px 4px 18px 18px;
    font-weight: 500;
}

.chat-message.received .chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-radius: 4px 18px 18px 18px;
}

.chat-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Lock Overlay */
.lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(239, 68, 68, 0.1) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    gap: 12px;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lock-badge {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: glowPulse 2s ease-in-out infinite;
}

.lock-icon {
    width: 40px;
    height: 40px;
    color: #ef4444;
}

.lock-alert-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #ef4444;
    border: 2px solid var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
    animation: alertPulse 1.5s ease-in-out infinite;
}

.lock-alert-icon {
    width: 16px;
    height: 16px;
    color: #fff;
    font-weight: 700;
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6); }
    50% { transform: scale(1.15); box-shadow: 0 4px 16px rgba(239, 68, 68, 0.8); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(30, 215, 96, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 24px rgba(30, 215, 96, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.15); }
}

.lock-message h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

.lock-message p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 6px;
}

.lock-cta-text {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.unlock-btn {
    margin-top: 8px;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(30, 215, 96, 0.3);
    letter-spacing: 0.2px;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 215, 96, 0.4);
}

.unlock-btn:active {
    transform: scale(0.96);
}

.unlock-btn-icon {
    width: 16px;
    height: 16px;
}

.lock-timer {
    font-size: 0.68rem;
    color: rgba(245, 158, 11, 0.8);
    margin-top: 6px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* ============ FOOTER ============ */

.app-footer {
    text-align: center;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    opacity: 0.4;
    padding: 24px 0 12px;
    letter-spacing: 0.3px;
}

/* ============ SOCIAL PROOF / TESTIMONIALS ============ */

.social-proof {
    margin-top: 14px;
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.testimonial-carousel {
    position: relative;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    padding: 14px 20px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(30, 215, 96, 0.1);
    border-radius: 12px;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-text {
    display: block;
    font-size: 0.82rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 6px;
}

.testimonial-author {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============ LEGACY CLASS ALIASES (HTML compatibility) ============ */

.report-content-blurred {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(239, 68, 68, 0.1);
    filter: blur(5px);
    -webkit-filter: blur(5px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.report-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 11, 17, 0.65) 0%, rgba(239, 68, 68, 0.08) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 14px;
    gap: 8px;
    padding: 24px;
    text-align: center;
    z-index: 10;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.report-lock-overlay .lock-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
    margin-bottom: 4px;
}

.report-lock-overlay .lock-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.lock-badge-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
    animation: alertPulse 1.5s ease-in-out infinite;
    z-index: 11;
}

.lock-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
}

.lock-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    line-height: 1.5;
    max-width: 260px;
}

/* Legacy blur-finding classes for HTML compatibility */
.severity-gauge {
    margin-bottom: 14px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.gauge-label {
    font-size: 0.67rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.gauge-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 6px;
}

.gauge-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, #22c55e 0%, #f59e0b 40%, #ef4444 80%);
    border-radius: 8px;
    transition: width 1s ease-out;
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.gauge-current {
    color: #ef4444;
    font-weight: 800;
    font-size: 0.67rem;
    letter-spacing: 0.5px;
}

.blur-finding {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 12px;
    margin: 8px 0;
    border-left: 3px solid rgba(245, 158, 11, 0.4);
}

.blur-finding--critical {
    border-left-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.05);
}

.blur-finding-header {
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blur-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blur-tag--red {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.blur-tag--orange {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.blur-finding-text {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1.6;
}

.emoji-hint {
    font-size: 0.85rem;
}

.blur-chat-preview {
    margin: 12px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.chat-preview-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.chat-bubble {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 14px;
    margin-bottom: 6px;
    position: relative;
}

.chat-bubble--received {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-bubble--sent {
    background: rgba(37, 211, 102, 0.2);
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.chat-name {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 2px;
}

.chat-bubble p {
    font-size: 0.74rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin: 0;
}

.chat-deleted {
    color: #ef4444 !important;
    font-style: italic;
    opacity: 0.8;
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 0.57rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.blur-alert-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.blur-severity {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.blur-severity--warning {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

.blur-severity--critical {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}

.blur-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}

.blur-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.blur-metric-value {
    font-size: 1.4rem;
    font-weight: 800;
}

.blur-metric--warn { color: #f59e0b; }
.blur-metric--danger { color: #ef4444; }

.blur-metric-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Severity pill aliases */
.severity-pill--critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.severity-pill--warning {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ============ UTILITIES ============ */

.hidden {
    display: none !important;
}

/* ============ ANIMATIONS ============ */

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

@keyframes sheetUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============ SCROLLBAR ============ */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(30, 215, 96, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 215, 96, 0.5);
}

/* ============ PAYMENT MODALS ============ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-sheet {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(13, 21, 32, 0.95) 100%);
    border-radius: 24px 24px 0 0;
    padding: 18px 22px 32px;
    animation: sheetUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 1px solid rgba(30, 215, 96, 0.15);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.modal-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 auto 18px;
}

/* Confirmation Modal */
.modal-target-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.modal-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 12px rgba(30, 215, 96, 0.3);
}

.modal-target-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.2px;
}

.modal-target-label {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-findings-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(30, 215, 96, 0.15);
}

.modal-finding-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

.modal-check {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Price Box */
.modal-price-box {
    text-align: center;
    margin-bottom: 18px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.08) 0%, rgba(30, 215, 96, 0.04) 100%);
    border-radius: 12px;
    border: 1px solid rgba(30, 215, 96, 0.15);
}

.modal-price-old {
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-bottom: 3px;
    letter-spacing: 0.2px;
}

.modal-price-old s {
    color: #ef4444;
}

.modal-price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.modal-price-note {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 5px;
    letter-spacing: 0.2px;
}

/* CTA Button */
.modal-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(30, 215, 96, 0.35);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 215, 96, 0.45);
}

.modal-cta-btn:active {
    transform: scale(0.97);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.modal-cta-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
    transform: none;
}

.modal-cta-icon {
    width: 20px;
    height: 20px;
}

/* Trust Row */
.modal-trust-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.modal-trust-row span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.modal-trust-icon {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* Close/Back Button */
.modal-close-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.modal-close-btn:active {
    background: rgba(255, 255, 255, 0.04);
}

/* ============ PIX MODAL ============ */

.pix-header {
    text-align: center;
    margin-bottom: 18px;
}

.pix-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pix-logo {
    width: 32px;
    height: 32px;
}

.pix-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.pix-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.pix-qr-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pix-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
}

.pix-loading .spinner {
    border-top-color: #333;
    border-right-color: #333;
}

.pix-qr-code {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-qr-code img {
    width: 100%;
    height: 100%;
}

/* Copy Area */
.pix-copy-area {
    margin-bottom: 14px;
}

.pix-copy-label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pix-copy-row {
    display: flex;
    gap: 7px;
}

.pix-copy-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    padding: 11px 13px;
    color: var(--text-main);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    -webkit-appearance: none;
    letter-spacing: 0.2px;
}

.pix-copy-btn {
    padding: 11px 15px;
    background: var(--accent);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(30, 215, 96, 0.3);
}

.pix-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.4);
}

.pix-copy-btn:active {
    transform: scale(0.95);
}

.pix-copy-icon {
    width: 16px;
    height: 16px;
    color: #000;
}

.pix-copied-msg {
    font-size: 0.68rem;
    color: var(--accent);
    margin-top: 5px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Amount */
.pix-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pix-amount strong {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Status */
.pix-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px;
    font-size: 0.77rem;
    color: var(--warning);
    margin-bottom: 16px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.pix-status-dot {
    width: 9px;
    height: 9px;
    background: var(--warning);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.pix-status--paid {
    color: var(--accent) !important;
    background: rgba(30, 215, 96, 0.08);
    border-color: rgba(30, 215, 96, 0.15);
}

.pix-status--paid .pix-status-dot {
    background: var(--accent) !important;
    box-shadow: 0 0 8px rgba(30, 215, 96, 0.6) !important;
}

/* ============ DESKTOP SCALING ============ */

@media (min-width: 768px) {
    .app-container {
        max-width: 520px;
        padding: 0 28px;
    }

    .app-header {
        padding: 36px 0 24px;
    }

    .logo h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.78rem;
    }

    .meta-partner-badge {
        height: 50px;
        margin-top: 18px;
    }

    .meta-partner-left {
        font-size: 0.8rem;
        padding: 0 18px;
    }

    .meta-partner-left strong {
        font-size: 1.08rem;
    }

    .meta-partner-right img {
        height: 15px;
    }

    .business-partner {
        font-size: 0.72rem;
    }

    .trust-badges {
        margin-top: 20px;
    }

    .section-label {
        margin-top: 4px;
    }

    .search-card,
    .results-card,
    .name-card {
        padding: 22px;
    }

    .search-card-header {
        margin-bottom: 18px;
    }

    .search-platform-label {
        font-size: 1.12rem;
    }

    .input-wrapper input {
        font-size: 0.98rem;
        padding: 17px 18px 17px 48px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }

    .modal-sheet {
        padding: 20px 24px 36px;
    }

    .lock-badge {
        width: 80px;
        height: 80px;
    }

    .lock-icon {
        width: 44px;
        height: 44px;
    }
}

/* ============ TABLET & DESKTOP ============ */

@media (min-width: 1024px) {
    .app-container {
        max-width: 560px;
        padding: 0 32px;
    }

    body {
        font-size: 17px;
    }

    .logo h1 {
        font-size: 2.4rem;
    }

    .search-card,
    .results-card,
    .name-card {
        padding: 24px;
    }

    .results-card {
        margin-top: 20px;
    }
}

/* ============ ACCESSIBILITY ============ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        color-scheme: dark;
    }
}
