/* --- NAV --- */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(236,236,237,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 22px; font-weight: 900; color: var(--wolf-dark); text-decoration: none; letter-spacing: -0.03em; text-transform: lowercase; }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--wolf-6); font-size: 14px; font-weight: 500; text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; transition: color var(--transition); }
.nav-links a:hover { color: var(--wolf-dark); }
.nav-cta { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; transition: all var(--transition); border: 2px solid var(--primary); }
.nav-cta:hover { background: transparent; color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--wolf-dark); margin: 5px 0; transition: all var(--transition); }

/* --- HERO --- */
.hero { padding: 200px 0 120px; text-align: center; background: var(--wolf-darker); position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,102,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,102,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(0,102,255,0.1) 0%, transparent 40%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero .wrap { max-width: 900px; position: relative; z-index: 2; }
.hero h1 { font-size: 68px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin: 28px 0 24px; color: #fff; text-transform: uppercase; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 44px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; }
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,102,255,0.12), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; filter: blur(40px); }

/* --- TRUST BAR --- */
.trust-bar { background: var(--wolf-dark); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
.trust-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-bar .trust-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); white-space: nowrap; }
.trust-bar .trust-logo { font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.25); letter-spacing: 0.02em; transition: color var(--transition); }
.trust-bar .trust-logo:hover { color: rgba(255,255,255,0.5); }

/* --- ABOUT --- */
.about { padding: 100px 0; background: var(--wolf-1); }
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { font-size: 42px; font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; }
.about-text p { color: var(--wolf-6); font-size: 16px; line-height: 1.7; margin-bottom: 12px; max-width: 480px; }
.about-visual { position: relative; height: 420px; }
.about-visual .code-window { position: absolute; width: 380px; right: 0; top: 20px; }
.about-visual .float-card { position: absolute; left: 0; bottom: 30px; z-index: 2; }

/* --- PLUGINS --- */
.plugins { padding: 100px 0; background: var(--wolf-2); }
.plugin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* --- FEATURES --- */
.features { padding: 100px 0; background: var(--wolf-1); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* --- STATS --- */
.stats { padding: 72px 0; background: var(--wolf-dark); position: relative; }
.stats::before, .stats::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,102,255,0.3), transparent); }
.stats::before { top: 0; }
.stats::after { bottom: 0; }
.stats .wrap { max-width: 1000px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 4px; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 0; background: var(--wolf-2); }
.test-scroll { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.test-scroll::-webkit-scrollbar { display: none; }

/* --- PRICING --- */
.pricing { padding: 100px 0; background: var(--wolf-1); }
.pricing .wrap { max-width: 1000px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* --- CTA --- */
.cta-section { padding: 100px 0; background: var(--wolf-darker); text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,102,255,0.1) 0%, transparent 60%);
}
.cta-section .wrap { max-width: 700px; position: relative; z-index: 1; }
.cta-section h2 { font-size: 42px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: 2px solid rgba(255,255,255,0.12); border-radius: var(--radius-full); background: rgba(255,255,255,0.06); color: #fff; font-size: 15px; font-family: inherit; outline: none; transition: all var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.newsletter-form button { padding: 16px 32px; border-radius: var(--radius-full); background: var(--primary); color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border: none; cursor: pointer; font-family: inherit; transition: all var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: var(--primary-hover); box-shadow: 0 4px 20px rgba(0,102,255,0.4); }

/* --- FOOTER --- */
.site-footer { background: var(--wolf-darker); color: rgba(255,255,255,0.5); padding: 72px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.footer-brand .logo span { color: var(--primary); }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 14px; padding: 6px 0; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; margin-left: 24px; }
.footer-bottom a:hover { color: var(--primary); }
