/* HushCard Theme — Landing Page Styles */

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

:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a28;
  --border: #1e1e2e;
  --text: #e4e4ef;
  --dim: #6b6b80;
  --muted: #44445a;
  --accent: #6c5ce7;
  --accent-glow: rgba(108,92,231,0.15);
  --green: #00d2a0;
  --green-glow: rgba(0,210,160,0.12);
  --red: #ff6b6b;
  --r: 14px;
  --font: 'Outfit', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body::before { content: ''; position: fixed; inset: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.hc-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ─── Nav ─── */
.hc-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; background: rgba(10,10,15,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(30,30,46,0.5); }
.hc-nav-inner { display: flex; justify-content: space-between; align-items: center; }
.hc-nav-logo { font-size: 22px; font-weight: 800; color: #fff !important; display: flex; align-items: center; gap: 8px; text-decoration: none !important; }
.hc-nav-logo span { font-size: 24px; }
.hc-nav-links { display: flex; gap: 28px; align-items: center; }
.hc-nav-links a { color: var(--dim); font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.hc-nav-links a:hover { color: #fff; text-decoration: none; }
.hc-btn-nav { background: var(--accent); color: #fff !important; padding: 10px 22px; border-radius: 10px; font-weight: 600; transition: all 0.3s; }
.hc-btn-nav:hover { background: #7c6cf0; transform: translateY(-1px); text-decoration: none !important; }
.hc-mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ─── Hero ─── */
.hc-hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; position: relative; overflow: hidden; }
.hc-hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 70%); top: -100px; right: -200px; border-radius: 50%; animation: hcFloat 8s ease-in-out infinite; }
.hc-hero::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,210,160,0.08) 0%, transparent 70%); bottom: -50px; left: -100px; border-radius: 50%; animation: hcFloat 10s ease-in-out infinite reverse; }
@keyframes hcFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-30px); } }

.hc-hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hc-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--accent-glow); border: 1px solid rgba(108,92,231,0.2); border-radius: 30px; font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 20px; animation: hcFadeUp 0.8s ease; }
.hc-hero h1 { font-size: clamp(40px,5vw,62px); font-weight: 800; line-height: 1.08; letter-spacing: -2px; color: #fff; margin-bottom: 20px; animation: hcFadeUp 0.8s ease 0.1s both; }
.hc-hero-desc { font-size: 18px; color: var(--dim); line-height: 1.7; max-width: 500px; margin-bottom: 32px; animation: hcFadeUp 0.8s ease 0.2s both; }
.hc-hero-ctas { display: flex; gap: 14px; animation: hcFadeUp 0.8s ease 0.3s both; }
.hc-hero-visual { position: relative; animation: hcFadeUp 1s ease 0.4s both; }

/* Buttons */
.hc-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: var(--accent); color: #fff; font-family: var(--font); font-size: 16px; font-weight: 600; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.hc-btn-primary:hover { background: #7c6cf0; transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); text-decoration: none; color: #fff; }
.hc-btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: transparent; color: var(--text); font-family: var(--font); font-size: 16px; font-weight: 500; border: 1px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.hc-btn-secondary:hover { border-color: var(--dim); background: rgba(255,255,255,0.03); text-decoration: none; }

/* Card Mockup */
.hc-card-mockup { background: linear-gradient(145deg,#1a1a2e,#16162a); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.hc-card-mockup::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(108,92,231,0.06),transparent 60%); pointer-events: none; }
.hc-mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.hc-mockup-title { font-size: 14px; color: var(--dim); font-weight: 500; }
.hc-mockup-amount { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 28px; }
.hc-mockup-amount span { font-size: 20px; color: var(--dim); }
.hc-mockup-field { margin-bottom: 16px; }
.hc-mockup-field label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.hc-field-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 13px 16px; font-family: var(--mono); font-size: 15px; color: var(--text); display: flex; justify-content: space-between; align-items: center; }
.hc-card-brand { font-weight: 600; color: #6c8cff; font-size: 13px; }
.hc-mockup-row { display: flex; gap: 12px; }
.hc-mockup-row .hc-mockup-field { flex: 1; }
.hc-mockup-btn { width: 100%; padding: 16px; margin-top: 8px; background: var(--green); color: #0a0a0f; border: none; border-radius: 12px; font-family: var(--font); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.hc-mockup-btn:hover { background: #00e6b0; }
.hc-mockup-footer { display: flex; justify-content: center; gap: 6px; margin-top: 14px; font-size: 12px; color: var(--muted); }

/* Float Tags */
.hc-float-tag { position: absolute; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); animation: hcFloatTag 3s ease-in-out infinite; }
.hc-float-1 { top: 20px; right: -30px; }
.hc-float-2 { bottom: 40px; left: -20px; animation-delay: 1.5s; }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.hc-dot-green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.hc-dot-red { background: var(--red); }
@keyframes hcFloatTag { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── Trust Bar ─── */
.hc-trust-bar { padding: 50px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hc-trust-bar p { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.hc-trust-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.4; font-size: 18px; font-weight: 700; color: var(--dim); letter-spacing: 2px; }

/* ─── Sections ─── */
.hc-section { padding: 100px 0; border-top: 1px solid var(--border); }
.hc-section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.hc-section-title { font-size: clamp(30px,4vw,46px); font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 16px; }
.hc-section-desc { font-size: 17px; color: var(--dim); max-width: 560px; margin-bottom: 48px; }

/* ─── Feature Grid ─── */
.hc-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.hc-feature-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.hc-feature-card:hover { background: var(--bg3); border-color: rgba(108,92,231,0.2); transform: translateY(-3px); }
.hc-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--accent),transparent); opacity: 0; transition: opacity 0.3s; }
.hc-feature-card:hover::before { opacity: 1; }
.hc-feature-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; background: var(--accent-glow); }
.hc-feature-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hc-feature-card p { font-size: 14px; color: var(--dim); line-height: 1.6; }

/* ─── Privacy Compare ─── */
.hc-privacy-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.hc-compare-card { padding: 32px; border-radius: var(--r); border: 1px solid var(--border); }
.hc-compare-bad { background: rgba(255,107,107,0.04); border-color: rgba(255,107,107,0.15); }
.hc-compare-good { background: rgba(0,210,160,0.04); border-color: rgba(0,210,160,0.15); }
.hc-compare-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.hc-compare-bad h3 { color: var(--red); }
.hc-compare-good h3 { color: var(--green); }
.hc-compare-item { padding: 10px 0; font-size: 14px; color: var(--dim); border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; gap: 10px; }
.hc-compare-item:last-child { border: none; }

/* ─── Steps ─── */
.hc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.hc-step { text-align: center; padding: 36px 28px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); }
.hc-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.hc-step h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hc-step p { font-size: 14px; color: var(--dim); line-height: 1.6; }

/* ─── Pricing ─── */
.hc-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.hc-price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; padding: 36px 28px; text-align: center; transition: all 0.3s; position: relative; }
.hc-price-card:hover { transform: translateY(-4px); }
.hc-popular { border-color: var(--accent); background: linear-gradient(180deg,rgba(108,92,231,0.08),var(--bg2) 50%); }
.hc-popular::before { content: 'MOST POPULAR'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 4px 18px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.hc-price-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hc-price-sites { font-size: 13px; color: var(--dim); margin-bottom: 20px; }
.hc-price-amount { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.hc-price-amount span { font-size: 20px; color: var(--dim); }
.hc-price-type { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 28px; }
.hc-price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.hc-price-features li { padding: 8px 0; font-size: 14px; color: var(--dim); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.hc-price-features li:last-child { border: none; }
.hc-check { color: var(--green); font-size: 16px; }
.hc-btn-price { display: block; width: 100%; padding: 15px; background: rgba(108,92,231,0.12); color: var(--accent); border: 1px solid rgba(108,92,231,0.2); border-radius: 12px; font-family: var(--font); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; text-align: center; }
.hc-btn-price:hover { background: var(--accent); color: #fff; text-decoration: none; }
.hc-popular .hc-btn-price { background: var(--accent); color: #fff; }
.hc-popular .hc-btn-price:hover { background: #7c6cf0; }

/* ─── FAQ ─── */
.hc-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.hc-faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.hc-faq-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hc-faq-item p { font-size: 14px; color: var(--dim); line-height: 1.6; }

/* ─── CTA ─── */
.hc-cta { padding: 100px 0; text-align: center; border-top: 1px solid var(--border); }
.hc-cta h2 { font-size: clamp(30px,4vw,46px); font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 16px; }
.hc-cta p { font-size: 17px; color: var(--dim); margin-bottom: 32px; }

/* ─── Footer ─── */
.hc-footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; }
.hc-footer p { font-size: 13px; color: var(--muted); }
.hc-footer a { color: var(--dim); }

/* ─── Animations ─── */
@keyframes hcFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hc-reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.hc-reveal.hc-visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hc-hero-content { grid-template-columns: 1fr; text-align: center; }
  .hc-hero-desc { margin: 0 auto 32px; }
  .hc-hero-ctas { justify-content: center; }
  .hc-hero-visual, .hc-float-tag { display: none; }
  .hc-features-grid, .hc-steps, .hc-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .hc-privacy-compare, .hc-faq-grid { grid-template-columns: 1fr; }
  .hc-nav-links a:not(.hc-btn-nav) { display: none; }
  .hc-mobile-toggle { display: block; }
}
@media (max-width: 600px) {
  .hc-trust-logos { gap: 20px; font-size: 14px; }
  .hc-section { padding: 60px 0; }
}

/* ─── WP Overrides ─── */
#wpadminbar ~ .hc-nav { top: 32px; }
@media (max-width: 782px) { #wpadminbar ~ .hc-nav { top: 46px; } }
