@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #22d47e; --green-dim: #1ab368;
  --bg: #050b14; --bg2: #0a1222; --bg3: #0f1a2e;
  --border: rgba(255,255,255,0.07);
  --text: #e8edf5; --muted: #7a8ba3;
  --font-head: 'Syne', sans-serif; --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,212,126,0.1); border: 1px solid rgba(34,212,126,0.25); color: var(--green); border-radius: 100px; font-size: 13px; font-weight: 500; padding: 6px 14px; font-family: var(--font-body); letter-spacing: 0.02em; }
.tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: block; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-family: var(--font-body); font-size: 15px; cursor: pointer; transition: all 0.2s ease; border: none; text-decoration: none; }
.btn-primary { background: var(--green); color: #050b14; }
.btn-primary:hover { background: #2efb92; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(34,212,126,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }
section { padding: 100px 0; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; background: rgba(5,11,20,0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: background 0.3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.logo span { color: var(--green); }
#hero { padding-top: 160px; padding-bottom: 120px; position: relative; overflow: hidden; text-align: center; }
#hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse at center, rgba(34,212,126,0.12) 0%, transparent 70%); pointer-events: none; }
.grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%); }
.hero-badge { margin-bottom: 28px; }
h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 6vw, 72px); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 620px; margin: 0 auto 48px; font-weight: 400; line-height: 1.65; }
.hero-sub strong { color: var(--text); }
.hero-cta { margin-bottom: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--muted); }
.hero-note span { color: var(--green); font-weight: 500; }
.proof-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.proof-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); font-weight: 500; }
.proof-item .icon { font-size: 20px; }
.proof-item strong { color: var(--text); }
#features { background: var(--bg2); }
.section-label { text-align: center; margin-bottom: 16px; }
h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.025em; line-height: 1.12; text-align: center; margin-bottom: 16px; }
h2 em { font-style: normal; color: var(--green); }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto 64px; line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; transition: border-color 0.25s, transform 0.25s; position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(34,212,126,0.4), transparent); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { border-color: rgba(34,212,126,0.3); transform: translateY(-4px); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(34,212,126,0.1); border: 1px solid rgba(34,212,126,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 24px; }
.feature-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 12px; letter-spacing: -0.01em; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.feature-highlight { display: inline-block; margin-top: 12px; background: rgba(34,212,126,0.1); border: 1px solid rgba(34,212,126,0.2); color: var(--green); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.02em; }
#how { position: relative; }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(to bottom, var(--green), rgba(34,212,126,0.1)); }
.step { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; }
.step-num { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--bg3); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--green); position: relative; z-index: 1; }
.step-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-bottom: 6px; letter-spacing: -0.01em; }
.step-body p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.yoast-callout { background: linear-gradient(135deg, rgba(34,212,126,0.06) 0%, rgba(34,212,126,0.02) 100%); border: 1px solid rgba(34,212,126,0.2); border-radius: 20px; padding: 48px; text-align: center; margin: 64px 0 0; }
.yoast-callout h3 { font-family: var(--font-head); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 12px; }
.yoast-callout p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto 24px; }
.yoast-badge { display: inline-flex; align-items: center; gap: 8px; background: #1a7a2e; color: #fff; padding: 8px 20px; border-radius: 8px; font-weight: 700; font-size: 15px; }
.yoast-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #2efb92; }
#pricing { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 32px; }
.pricing-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; transition: border-color 0.25s, transform 0.25s; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--green); background: linear-gradient(145deg, rgba(34,212,126,0.06) 0%, var(--bg3) 60%); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #050b14; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 100px; font-family: var(--font-body); letter-spacing: 0.04em; text-transform: uppercase; }
.pricing-card.free-card { border-style: dashed; }
.pricing-card:hover:not(.featured) { border-color: rgba(34,212,126,0.3); transform: translateY(-4px); }
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.plan-price { font-family: var(--font-head); font-weight: 800; font-size: 44px; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; font-weight: 600; }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.plan-credits { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.plan-posts { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-card .btn { width: 100%; margin-top: auto; }
.pricing-note { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.pricing-note span { color: var(--green); }
.topup-bar { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.topup-bar p { color: var(--muted); font-size: 14px; }
.topup-bar strong { color: var(--text); }
#download { background: linear-gradient(135deg, rgba(34,212,126,0.06) 0%, transparent 60%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.download-inner { max-width: 600px; margin: 0 auto; }
.download-steps { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.download-step { display: flex; align-items: center; gap: 8px; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; font-size: 13px; color: var(--muted); }
.download-step .num { width: 22px; height: 22px; border-radius: 50%; background: rgba(34,212,126,0.15); color: var(--green); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 14px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (max-width: 640px) {
  section { padding: 72px 0; }
  #hero { padding-top: 120px; padding-bottom: 80px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .steps::before { left: 23px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-inner .btn { display: none; }
  .yoast-callout { padding: 32px 24px; }
  .topup-bar { flex-direction: column; }
  .proof-items { gap: 24px; }
}
.reveal { opacity: 1 !important; transform: none !important; }