/* ==========================================
   CHAPTERS CPA LANDING PAGE - PREMIUM DESIGN
   ========================================== */

/* CSS Variables */
:root {
    --primary: #a855f7;
    --primary-deep: #7c3aed;
    --primary-glow: rgba(168, 85, 247, 0.4);
    --secondary: #ec4899;
    --secondary-glow: rgba(236, 72, 153, 0.4);
    --accent: #fbbf24;
    --accent-glow: rgba(251, 191, 36, 0.4);
    --accent-hover: #fcd34d;

    --bg-deep: #0c0118;
    --bg-card: rgba(20, 10, 40, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

    --text-white: #f8fafc;
    --text-muted: #a3a3b5;
    --text-dim: #6b6b80;

    --success: #34d399;
    --error: #f43f5e;
    --warning: #f59e0b;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px 0;
}

/* Background */
.bg-overlay {
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, rgba(12, 1, 24, 0.7) 0%, rgba(26, 10, 46, 0.8) 50%, rgba(12, 1, 24, 0.9) 100%),
        url('https://www.melissabrayden.com/wp-content/uploads/2021/08/Chapters-Interactive-Stories-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Floating Hearts */
.floating-elements {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.float-heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    animation: floatUp 8s ease-in infinite;
    color: rgba(236, 72, 153, 0.3);
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.5);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.1; }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(1.2);
    }
}

.hidden {
    display: none !important;
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Live Badge */
.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    color: var(--success);
    animation: fadeInDown 0.6s ease;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Header */
header {
    text-align: center;
    animation: fadeInDown 0.8s ease;
    padding: 10px 0;
}

.app-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.app-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--primary-glow);
    position: relative;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.app-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24, #f472b6, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 2px;
}

.rating-stars {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.75rem;
}

.rating-stars i {
    color: var(--accent);
    font-size: 0.85rem;
}

.rating-stars span {
    color: var(--text-muted);
    margin-left: 6px;
}

/* Glass Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* Generator Card */
.generator-card {
    padding: 24px;
    width: 100%;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
    overflow: hidden;
}

.generator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 0 10px;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: var(--transition);
    flex-shrink: 0;
}

.step-dot.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    box-shadow: 0 0 12px var(--primary-glow);
}

.step-dot.done {
    background: var(--success);
    border-color: transparent;
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 4px;
    transition: var(--transition);
}

.step-line.done {
    background: var(--success);
}

.step-line.active {
    background: linear-gradient(90deg, var(--success), var(--primary));
}

/* Step Styles */
.step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.4s ease;
}

.step-header {
    text-align: center;
    margin-bottom: 4px;
}

.step-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 12px;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.step-icon-circle.purple {
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    box-shadow: 0 4px 16px rgba(192, 132, 252, 0.4);
}

.step-icon-circle.orange {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.4);
}

.step h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.step .subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Input */
.input-group {
    position: relative;
    width: 100%;
}

.input-group > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1rem;
    transition: var(--transition);
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 14px 44px 14px 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.input-group input::placeholder {
    color: var(--text-dim);
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.input-group input:focus ~ i {
    color: var(--primary);
}

.input-status {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

/* Device Selection */
.device-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.device-options {
    display: flex;
    gap: 10px;
}

.device-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.device-btn:hover {
    border-color: var(--glass-border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.device-btn.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--primary);
    color: var(--text-white);
}

.device-btn i {
    font-size: 1.3rem;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: white;
    box-shadow: 0 4px 16px var(--primary-glow);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-generate {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary), #be185d);
    color: white;
    box-shadow: 0 4px 16px var(--secondary-glow);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--secondary-glow);
}

.encryption-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-dim);
}

.encryption-note i {
    color: var(--success);
    font-size: 0.7rem;
}

/* Connected Badge */
.connected-user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--success);
}

.connected-user-badge i {
    font-size: 1rem;
}

/* Resource Group */
.resource-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--glass-border);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.resource-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.resource-title i {
    font-size: 1.2rem;
}

.resource-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

/* Slider */
.slider-track {
    position: relative;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    margin-top: -8px;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    border: none;
}

input[type=range]::-moz-range-thumb {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    border: none;
    box-shadow: 0 0 10px var(--accent-glow);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* Console Box */
.console-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.console-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.console-dots {
    display: flex;
    gap: 5px;
}

.console-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.console-dots span:nth-child(1) { background: #f43f5e; }
.console-dots span:nth-child(2) { background: #fbbf24; }
.console-dots span:nth-child(3) { background: #34d399; }

.console-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
}

.console-box ul {
    list-style: none;
    padding: 12px;
    max-height: 160px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
}

.console-box li {
    margin-bottom: 4px;
    line-height: 1.5;
    animation: fadeIn 0.3s;
}

.console-box li.system { color: var(--success); }
.console-box li.error { color: var(--error); }
.console-box li.warning { color: var(--warning); }
.console-box li.info { color: #60a5fa; }

/* Progress */
.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 4px;
    transition: width 0.4s ease;
    position: relative;
}

.progress-glow {
    position: absolute;
    right: 0;
    top: -4px;
    bottom: -4px;
    width: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(6px);
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 50px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ===== VERIFICATION STEP ===== */
.verification-step {
    text-align: center;
    gap: 0 !important;
}

.locker-header {
    padding: 20px 0 16px;
}

.shield-anim {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.shield-anim > i {
    font-size: 2.8rem;
    color: var(--accent);
    filter: drop-shadow(0 0 12px var(--accent-glow));
    animation: pulse 2s infinite;
}

.shield-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(251, 191, 36, 0.15);
    border-radius: 50%;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0; }
}

.locker-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 4px;
}

.locker-subtitle {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Locker Resources */
.locker-resources {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}

.locker-resource-card {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.locker-resource-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.locker-resource-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.locker-resource-card p {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.diamond-card {
    border-color: rgba(192, 132, 252, 0.2);
}

.ticket-card {
    border-color: rgba(251, 113, 133, 0.2);
}

.card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(251, 191, 36, 0.05), transparent);
    pointer-events: none;
}

/* Locker Warning */
.locker-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.locker-warning i {
    color: var(--warning);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.locker-warning p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.locker-warning strong {
    color: var(--text-white);
}

/* Locker Steps Visual */
.locker-steps-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 0 4px;
}

.locker-vstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vstep-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    transition: var(--transition);
}

.locker-vstep.done .vstep-icon {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.locker-vstep.active .vstep-icon {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    border-color: var(--accent);
    color: #111;
    box-shadow: 0 0 12px var(--accent-glow);
    animation: pulse 1.5s infinite;
}

.locker-vstep span {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.locker-vstep.done span { color: var(--success); }
.locker-vstep.active span { color: var(--accent); }

.vstep-connector {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 2px;
    margin-bottom: 20px;
}

.vstep-connector.done { background: var(--success); }
.vstep-connector.active { background: linear-gradient(90deg, var(--success), var(--accent)); }

/* Verify Button */
.btn-verify-large {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    color: #111;
    box-shadow: 0 4px 20px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-bottom: 12px;
}

.btn-verify-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
    50% { box-shadow: 0 4px 30px rgba(251, 191, 36, 0.6); }
}

.verify-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--error);
    margin-bottom: 10px;
    animation: blink 1.5s infinite;
}

.verify-timer i {
    font-size: 0.8rem;
}

.secure-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--success);
    font-size: 0.68rem;
}

/* Urgency Banner */
.urgency-banner {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.urgency-icon {
    width: 36px;
    height: 36px;
    background: rgba(243, 63, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgency-icon i {
    color: var(--error);
    font-size: 1rem;
    animation: pulse 1.5s infinite;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.urgency-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--error);
    text-transform: uppercase;
}

.urgency-text strong {
    color: var(--accent);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px;
    width: 100%;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.proof-stat strong {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-stat span {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-divider {
    width: 1px;
    height: 28px;
    background: var(--glass-border);
}

/* Toast */
.toast {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translate(-50%, -120%);
    background: rgba(20, 10, 40, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s cubic-bezier(0.68, -0.3, 0.265, 1.2);
    z-index: 200;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    transform: translate(-50%, 0);
}

.toast-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #c084fc, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.82rem;
    color: var(--text-white);
}

.toast-message span {
    color: var(--accent);
    font-weight: 700;
}

.toast-time {
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.toast-close {
    cursor: pointer;
    color: var(--text-dim);
    font-size: 0.8rem;
    padding: 4px;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--text-white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }

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

    .generator-card {
        padding: 18px;
        border-radius: var(--radius-md);
    }

    .toast {
        min-width: 90%;
        max-width: 95%;
    }

    .locker-vstep span {
        font-size: 0.55rem;
    }

    .vstep-connector {
        width: 16px;
    }
}
