/* ==============================================
   TWIN FLAME FREQUENCY — styles.css
   Pure HTML/CSS/JS version
   ============================================== */

/* ── NON-CRITICAL FONTS (loaded deferred via print trick) ── */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ── GLOBAL reset intentionally omitted — handled by inline critical CSS on each page ── */

/* ── TYPOGRAPHY bare selectors intentionally omitted — handled by scoped inline CSS on each page ── */

/* ── BACKGROUND UTILITIES ── */
.purple-gradient {
    background: linear-gradient(180deg, #000000 0%, #1a0a2e 50%, #000000 100%);
}

.gold-glow {
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.08) 0%, #000000 70%);
}

.navy-gradient {
    background: linear-gradient(180deg, #000000 0%, #0a1628 50%, #000000 100%);
}

.grey-gradient {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.purple-aura-glow {
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.12) 0%, rgba(88, 28, 135, 0.06) 40%, transparent 70%),
                linear-gradient(180deg, #000000 0%, #0a0a12 50%, #000000 100%);
}

.charcoal-image-bg {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
}

/* ── BUTTONS ── */
.gradient-button {
    color: #ffffff;
    text-decoration: none;
    pointer-events: auto;
}

.gradient-button:hover,
.gradient-button:visited,
.gradient-button:active,
.gradient-button:focus {
    color: #ffffff;
    text-decoration: none;
}

/* ── TESTIMONIAL CARD ── */
.tff-testimonial-card {
    background: #f9f7f4;
    border-radius: 16px;
    padding: 40px;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tff-testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.tff-testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.tff-testimonial-location {
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
}

.tff-testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

@media (max-width: 768px) {
    .tff-testimonial-card {
        max-width: 380px;
        padding: 32px;
    }

    .tff-testimonial-photo {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }

    .tff-testimonial-name     { font-size: 18px; }
    .tff-testimonial-location { font-size: 14px; margin-bottom: 20px; }
    .tff-testimonial-quote    { font-size: 15px; }
}

/* ── FAQ intentionally omitted — handled by inline CSS on results page ── */

/* ── AURA SCAN FORM OVERRIDES ── */
#twinFlameFormWrapper .tff-disclaimer {
    font-size: 14px;
    line-height: 1.5;
}

#twinFlameFormWrapper .popup-content p {
    font-size: 18px;
}

#twinFlameFormWrapper .privacy-note,
#emailGate .privacy-note,
.popup-content .privacy-note {
    font-size: 10px;
}

#emailGate .popup-content .privacy-note {
    font-size: 12px;
}

@media (max-width: 480px) {
    #twinFlameFormWrapper .tff-disclaimer    { font-size: 13px; }
    #twinFlameFormWrapper .popup-content p   { font-size: 16px; }
    #emailGate .popup-content h3             { font-size: 24px; }
    #twinFlameFormWrapper .privacy-note      { font-size: 11px; }
}

@media (max-width: 375px) {
    #twinFlameFormWrapper .privacy-note { font-size: 9px; }
    #emailGate .popup-content h3        { font-size: 22px; }
}

/* ── STICKY BUY BAR intentionally omitted — handled by inline CSS on results page ── */
