/* =================================================================
   AI Quote — 고객용 공용 스타일
   - 모든 ai_quote 페이지가 로드
   - 다크 배경 + 그라디언트 Orb + 글로우 CTA 공통 토큰
   ================================================================= */

:root {
    --aiq-bg-dark: #0a0e2e;
    --aiq-bg-dark-2: #111633;
    --aiq-bg-dark-3: #1a2166;
    --aiq-primary: #5b6cff;
    --aiq-primary-lt: #8a9aff;
    --aiq-primary-dp: #2a3ab8;
    --aiq-accent: #a675ff;
    --aiq-pink: #ff5e7e;
    --aiq-amber: #ffae00;
    --aiq-green: #10c98a;
    --aiq-text: #1a1f3a;
    --aiq-text-sub: #5e6580;
    --aiq-text-mute: #8b97b3;
    --aiq-border: #e6e8f0;
    --aiq-border-lt: #eef1ff;
    --aiq-surface: #ffffff;
    --aiq-surface-lt: #f7f8fd;
    --aiq-radius: 20px;
    --aiq-radius-lg: 28px;
    --aiq-radius-sm: 12px;
    --aiq-shadow-card: 0 20px 48px -16px rgba(10, 14, 46, 0.22);
    --aiq-shadow-cta: 0 16px 36px -10px rgba(91, 108, 255, 0.45);
}

/* 전체 래퍼 — 다크 톤 기본 */
.aiq_wrap {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0e2e 0%, #111633 50%, #0a0e2e 100%);
    color: #fff;
    overflow: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 배경 오브 */
.aiq_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.aiq_orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: aiqOrbFloat 14s ease-in-out infinite;
}
.aiq_orb_1 {
    width: 400px; height: 400px;
    top: -120px; left: -100px;
    background: radial-gradient(circle, #5b6cff, transparent 70%);
}
.aiq_orb_2 {
    width: 340px; height: 340px;
    top: 30%; right: -120px;
    background: radial-gradient(circle, #a675ff, transparent 70%);
    animation-delay: -5s;
}
.aiq_orb_3 {
    width: 280px; height: 280px;
    bottom: -80px; left: 40%;
    background: radial-gradient(circle, #10c98a, transparent 70%);
    animation-delay: -9s;
}
@keyframes aiqOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* 배경 그리드 패턴 */
.aiq_grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* 공용: 그라디언트 텍스트 */
.aiq_gradient_text {
    background: linear-gradient(135deg, #8a9aff 0%, #a675ff 50%, #ff5e7e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 공용: 온라인 점 */
.aiq_live_dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10c98a;
    border-radius: 50%;
    margin-right: 4px;
    box-shadow: 0 0 0 3px rgba(16, 201, 138, 0.25);
    animation: aiqLiveDotPulse 1.8s ease-in-out infinite;
    vertical-align: middle;
}
@keyframes aiqLiveDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16, 201, 138, 0.25); }
    50%      { box-shadow: 0 0 0 6px rgba(16, 201, 138, 0.1); }
}

/* 공용: 헤더 도트 (Claude on) */
.aiq_dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10c98a;
    box-shadow: 0 0 0 4px rgba(16, 201, 138, 0.22);
    animation: aiqLiveDotPulse 1.8s ease-in-out infinite;
}

/* 공용: 아바타 */
.aiq_avatar_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5b6cff, #a675ff);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.aiq_avatar_status {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 12px;
    height: 12px;
    background: #10c98a;
    border: 2px solid #fff;
    border-radius: 50%;
}
