
/* Reset & Base */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); line-height: 1.6; background: var(--bg-main); }
a { text-decoration: none; color: var(--primary-color); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3 { color: var(--text-main); line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-light); margin-bottom: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; transition: all 0.2s; cursor: pointer; }
.btn-primary { background: var(--primary-color); color: white; border: none; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: white; }
.btn-large { padding: 1rem 2rem; font-size: 1.125rem; }
.mt-2 { margin-top: 1rem; }

/* Header */
.header { border-bottom: 1px solid var(--border-color); position: sticky; top: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px); z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo a { font-size: 1.5rem; font-weight: 800; color: var(--text-main); }
.nav ul { display: flex; gap: 2rem; }
.nav a { color: var(--text-main); font-weight: 500; }
.nav a:hover { color: var(--primary-color); }

/* Layout Utilities */
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.bg-light { background-color: var(--bg-light); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* Cards */
.card { background: white; border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

/* Hero Section */
.hero { padding: 6rem 0; overflow: hidden; }
.hero-inner { display: flex; align-items: center; gap: 4rem; }
.hero-content { flex: 1; }
.hero .subtitle { font-size: 1.125rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; }
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }


@keyframes morph { 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } 50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; } 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } }


/* Features */
.feature-card { text-align: center; }
.feature-card .icon { font-size: 3rem; margin-bottom: 1rem; }

/* Media & AI */
.media-card { display: flex; flex-direction: column; text-align: center; align-items: center; gap: 2rem; max-width: 800px; margin: 0 auto; background: white; border-radius: 16px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.media-img { flex: 1; border-radius: 8px; }
.media-text { width: 100%; }

/* Pricing */
.pricing-card { text-align: center; position: relative; display: flex; flex-direction: column; }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--text-main); margin: 1rem 0 2rem; }
.pricing-card .price span { font-size: 1rem; color: var(--text-light); }
.plan-features { margin-bottom: 2rem; text-align: left; flex-grow: 1; }
.plan-features li { margin-bottom: 0.75rem; padding-left: 1.5rem; position: relative; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: #10b981; font-weight: bold; }
.popular { border-color: var(--primary-color); border-width: 2px; }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.875rem; font-weight: bold; }

/* Articles */
.article-card { padding: 0; overflow: hidden; }
.article-content { padding: 1.5rem; }
.article-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 2rem; }
.faq-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }

/* Reviews */
.review-card .stars { margin-bottom: 1rem; }
.review-card .user { font-weight: 600; color: var(--text-main); margin-top: 1rem; }

/* Footer */
.footer { background: #1e293b; color: #94a3b8; padding: 3rem 0; text-align: center; }
.footer-links { margin-bottom: 1.5rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: #e2e8f0; font-weight: 500; }
.footer-links a:hover { color: white; }
.footer-copyright { font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.pbn-links { display: inline-block; margin-top: 0.5rem; }
/* PBN Link specific styling to make them stand out slightly yet blend */
.pbn-link { color: #38bdf8 !important; font-weight: 600; margin: 0 0.5rem; transition: color 0.2s; }
.pbn-link:hover { color: #7dd3fc !important; text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .hero-inner, .media-card { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .nav { display: none; } /* Simple hiding for mobile to keep minimalist, in real world add hamburger */
    .header-cta { margin-left: auto; }
    .plan-features { text-align: center; }
    .plan-features li { padding-left: 0; }
    .plan-features li::before { position: relative; margin-right: 0.5rem; }
}

/* New Hero CSS */
.hero-animation-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    z-index: 1;
    opacity: 0.25;
    filter: blur(20px);
}
.glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}
.glass-icon { font-size: 4rem; margin-bottom: 1rem; }
.glass-title { font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.glass-status { font-size: 1rem; color: var(--text-light); display: flex; align-items: center; justify-content: center; gap: 8px; }
.ping-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
