:root {
    --primary: #2563eb;
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --gradient: linear-gradient(135deg, #2563eb, #7c3aed);
    --bg: #fafafa;
    --bg-light: #fafafa;
    --surface: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --border-color: #e5e7eb;
    --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* Background Mesh / Glow */
.bg-mesh { position: fixed; top: -20vh; left: -10vw; width: 120vw; height: 80vh; background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.05) 30%, transparent 70%); z-index: -1; pointer-events: none; }

/* Floating Pill Nav */
.floating-nav { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 900px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 100px; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; }
.nav-logo { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.nav-links { display: flex; gap: 25px; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-btn { background: var(--text-main); color: white; padding: 8px 20px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; transition: transform 0.2s, background 0.2s; }
.nav-btn:hover { background: var(--primary); transform: scale(1.05); }

/* Hero Section */
.hero-section { max-width: 1000px; margin: 150px auto 80px; text-align: center; padding: 0 20px; }
.hero-badge { display: inline-block; background: rgba(37, 99, 235, 0.1); color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 700; margin-bottom: 25px; border: 1px solid rgba(37, 99, 235, 0.2); }
.hero-title { font-size: 5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -0.03em; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 40px; line-height: 1.7; }
.btn-primary { display: inline-block; background: var(--gradient); color: white; padding: 18px 45px; border-radius: 100px; font-size: 1.15rem; font-weight: bold; box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4); }

/* Hero Features (Horizontal blocks) */
.hero-features { display: flex; justify-content: center; gap: 20px; margin-top: 80px; flex-wrap: wrap; }
.hf-card { background: var(--surface); padding: 20px 25px; border-radius: var(--radius); box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px; text-align: left; border: 1px solid var(--border); min-width: 250px; }
.hf-icon { font-size: 2rem; }
.hf-text { display: flex; flex-direction: column; }
.hf-text strong { font-size: 1.05rem; color: var(--text-main); }
.hf-text span { font-size: 0.9rem; color: var(--text-muted); }

/* Layout Containers */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.02em; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: var(--surface); border-radius: var(--radius); padding: 40px; text-align: center; border: 1px solid var(--border); transition: transform 0.2s; display: flex; flex-direction: column; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15); position: relative; }
.price-card.featured:hover { transform: scale(1.05) translateY(-5px); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 15px; border-radius: 100px; font-size: 0.85rem; font-weight: bold; }
.p-tier { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.p-amount { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 5px; color: var(--text-main); }
.p-amount span { font-size: 1rem; color: var(--text-muted); font-weight: normal; }
.p-features { list-style: none; margin: 30px 0; text-align: left; flex: 1; }
.p-features li { margin-bottom: 15px; font-size: 1rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.p-features li::before { content: "✓"; color: #10b981; font-weight: bold; }
.btn-outline { display: block; border: 1px solid var(--border); color: var(--text-main); padding: 15px 0; border-radius: 100px; font-weight: bold; transition: background 0.2s; }
.btn-outline:hover { background: var(--bg); }

/* Bento Blog Grid */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.blog-img { height: 160px; padding: 20px; display: flex; align-items: flex-start; }
.blog-category { display: inline-block; background: rgba(0,0,0,0.6); color: white; padding: 4px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(4px); }
.blog-content { padding: 25px; flex: 1; }
.blog-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.blog-content p { font-size: 0.95rem; color: var(--text-muted); }

.card-span-2x2 { grid-column: span 2; grid-row: span 2; }
.card-span-2x2 .blog-img { height: 260px; }
.card-span-2x2 .blog-content h3 { font-size: 1.5rem; margin-bottom: 15px; }
.card-span-2x1 { grid-column: span 2; flex-direction: row; }
.card-span-2x1 .blog-img { width: 40%; height: auto; }
.card-span-2x1 .blog-content { width: 60%; display: flex; flex-direction: column; justify-content: center; }
.card-span-3x1 { grid-column: span 3; flex-direction: row; }
.card-span-3x1 .blog-img { width: 30%; height: auto; }
.card-span-3x1 .blog-content { width: 70%; display: flex; flex-direction: column; justify-content: center; }

/* Blog Gradients */
.bg-1 { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.bg-2 { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.bg-3 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.bg-4 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.bg-5 { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.bg-6 { background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); }
.bg-7 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.bg-8 { background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%); }
.bg-9 { background: linear-gradient(135deg, #434343 0%, #000000 100%); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); padding: 30px; border-radius: var(--radius); }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-main); }
.faq-item p { color: var(--text-muted); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 60px 20px; text-align: center; background: white; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; font-weight: 500; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-main); }
.friend-links { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.95rem; }
.friend-links a { font-weight: 700; color: var(--primary); margin: 0 15px; text-decoration: none; transition: color 0.2s; }
.friend-links a:hover { color: #60a5fa; }

/* Mobile */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-features { flex-direction: column; align-items: stretch; }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-5px); }
    .bento-grid { grid-template-columns: 1fr; }
    .card-span-2x2, .card-span-2x1, .card-span-3x1 { grid-column: span 1; grid-row: span 1; flex-direction: column; }
    .card-span-2x1 .blog-img, .card-span-3x1 .blog-img { width: 100%; height: 200px; }
    .card-span-2x1 .blog-content, .card-span-3x1 .blog-content { width: 100%; }
    .nav-links { display: none; }
}
