/*
Theme Name:  BlockWatch
Theme URI:   https://blockwatchusa.com
Author:      Ethereal
Author URI:  https://blockwatchusa.com
Description: Official BlockWatch website theme. A connected community is a protected community.
Version:     1.0.0
License:     Proprietary
Text Domain: blockwatch
*/

/* ── Glass header ──────────────────────────────────────────────────────── */
.glass-header {
    background: rgba(247, 248, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}

/* ── Glass panel (used in hero sections, dark backgrounds) ─────────────── */
.glass-panel {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(7, 35, 86, 0.15);
}

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Gradient text (primary brand gradient) ────────────────────────────── */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #072356, #3B82F6);
}

/* ── Gradient text (accent) ────────────────────────────────────────────── */
.text-gradient-accent {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #3B82F6, #072356);
}

/* ── Custom scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F7F8FA; }
::-webkit-scrollbar-thumb { background: #DDDDDD; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3B82F6; }

/* ── Mobile menu ───────────────────────────────────────────────────────── */
.mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.open {
    transform: translateY(0);
}

/* ── Store Buttons ─────────────────────────────────────────────────────── */
.btn-appstore, .btn-googleplay {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #FFFFFF;
    border-radius: 14px;
    padding: 10px 20px;
    border: 1.5px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-appstore:hover, .btn-googleplay:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.btn-appstore .store-icon, .btn-googleplay .store-icon { font-size: 1.75rem; }
.btn-googleplay .store-icon { color: #22C55E; }
.btn-appstore .store-label-small  { font-size: 0.625rem; opacity: 0.75; line-height: 1; color: #FFFFFF; }
.btn-appstore .store-label-big    { font-size: 1.05rem; font-weight: 700; line-height: 1.2; color: #FFFFFF; }
.btn-googleplay .store-label-small { font-size: 0.625rem; opacity: 0.85; line-height: 1; color: #22C55E; }
.btn-googleplay .store-label-big   { font-size: 1.05rem; font-weight: 700; line-height: 1.2; color: #22C55E; }

/* ── How-To page: step connector & animations ──────────────────────────── */
.step-connector {
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: -24px;
    width: 2px;
    background: linear-gradient(to bottom, #072356, transparent);
}
.video-play-btn { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.video-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 0 16px rgba(59,130,246,0.15), 0 0 0 32px rgba(59,130,246,0.07);
}
@keyframes ring-pulse {
    0%   { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}
.ring-pulse   { animation: ring-pulse 2.5s ease-out infinite; }
.ring-pulse-2 { animation: ring-pulse 2.5s ease-out 0.8s infinite; }
.ring-pulse-3 { animation: ring-pulse 2.5s ease-out 1.6s infinite; }

/* ── FAQs accordion ────────────────────────────────────────────────────── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-item { transition: background 0.25s ease, box-shadow 0.25s ease; }
.faq-item.active { background: white; box-shadow: 0 4px 24px rgba(7,35,86,0.08); }
.faq-icon { transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.q-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: #E3F2FD; color: #3B82F6; font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
}

/* ── Pricing cards ─────────────────────────────────────────────────────── */
.plan-card { transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1); }
.plan-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 60px -12px rgba(7,35,86,0.15); }
.plan-popular { position: relative; }
.plan-popular::before {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 28px;
    background: linear-gradient(135deg, #FF9800, #22C55E, #3B82F6);
    z-index: -1;
}
.check-icon {
    display: flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%; background: #D1FAE5; flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; color: #22C55E; }

/* ── Form fields ───────────────────────────────────────────────────────── */
.form-field,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.form-field:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #072356;
    box-shadow: 0 0 0 3px rgba(7, 35, 86, 0.12);
    transform: translateY(-1px);
}
.form-field::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #9ca3af;
    font-size: 0.875rem;
}
.submit-btn,
.wpcf7 input[type="submit"] {
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    cursor: pointer;
}
.submit-btn:hover,
.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(7, 35, 86, 0.3);
}

/* ── CF7 field wrappers ─────────────────────────────────────────────────── */
.wpcf7 .wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    background: #fff;
    display: block;
}
.wpcf7 select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    background: #fff;
    appearance: none;
    display: block;
}
.wpcf7 textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    background: #fff;
    resize: none;
    display: block;
}
.wpcf7 input[type="submit"] {
    background: #072356;
    color: #fff;
    font-weight: 700;
    padding: 0.875rem 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgba(7,35,86,0.25);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: none;
    display: block;
    margin: 0 auto;
}
.wpcf7 input[type="submit"]:hover { background: #0A2E6E; }
.wpcf7-response-output {
    border-radius: 0.75rem !important;
    margin: 1rem 0 0 !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
}
.wpcf7-not-valid-tip { color: #F44336; font-size: 0.75rem; margin-top: 0.25rem; display: block; }

/* ── Careers/contact value-card ─────────────────────────────────────────── */
.value-card { transition: transform .3s, box-shadow .3s, background .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(7,35,86,.1); background: white; }

/* ── Contact quick cards ─────────────────────────────────────────────────── */
.contact-card { transition: transform .3s, box-shadow .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(7,35,86,.1); }

/* ── Investor stat cards ─────────────────────────────────────────────────── */
.stat-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(7,35,86,0.12); }

/* ── Platform toggle (feedback) ──────────────────────────────────────────── */
.platform-btn { transition: background 0.2s, color 0.2s, border-color 0.2s; }
.platform-btn.selected { background: #072356; color: white; border-color: #072356; }

/* ── WP editor reset ─────────────────────────────────────────────────────── */
.wp-content-area { display: none; }
