:root {
    --bg: #0d0d0d;
    --bg-2: #080808;
    --surface: #171717;
    --surface-2: #1e1e1e;
    --text: #ffffff;
    --muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --accent: #b14cee;
    --yellow: #ffce4d;
    --grad: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787);
    --grad-text: linear-gradient(90deg, #ff4d4d 0%, #ff8c00 20%, #ffe14d 38%, #2ecc71 56%, #3a8dff 74%, #b06bff 100%);
    --radius: 16px;
    --radius-btn: 12px;
    --container: 1200px;
    --font: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font); font-weight: 600; font-size: 15px;
    padding: 12px 26px; border-radius: var(--radius-btn); border: none; cursor: pointer;
    background: var(--grad); color: #ffffff; white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    box-shadow: 0 6px 22px rgba(180, 76, 238, 0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(180, 76, 238, 0.45); filter: brightness(1.08) saturate(1.1); }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--text); border: 1px solid var(--border-strong); box-shadow: none; text-shadow: none; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); box-shadow: none; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .25s ease, border-color .25s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(13, 13, 13, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 21px; letter-spacing: -.3px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand-accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .16s ease; }
.nav-links > a:hover { color: var(--text); }
.nav-cta { color: #ffffff !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

.hero { position: relative; padding: 150px 0 80px; text-align: center; overflow: hidden; }
.hero-glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 940px; height: 640px; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(180, 76, 238, 0.18), rgba(58, 141, 255, 0.1) 40%, rgba(255, 140, 0, 0.06) 60%, transparent 72%); filter: blur(30px); }
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.pill-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); padding: 8px 16px; border-radius: 9999px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 700; line-height: 1.06; letter-spacing: -1.5px; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--muted); max-width: 620px; margin: 20px auto 0; }
.hero-cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.hero-proof { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14px; color: var(--muted); }
.hero-proof .stars { color: var(--yellow); letter-spacing: 2px; }
.hero-proof b { color: var(--text); }
.hero-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 56px; }
.hero-strip .hs { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.hero-strip .hs img { width: 100%; height: 100%; object-fit: cover; }
.hero-strip .hs:nth-child(even) { transform: translateY(18px); }

.section { padding: 84px 0; }
.section-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -1px; line-height: 1.1; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: 12px; }

.char-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.char-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.char-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.char-card:hover { transform: translateY(-5px); border-color: rgba(180, 76, 238, 0.5); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5); }
.char-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.char-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.char-card:hover .char-media img { transform: scale(1.05); }
.char-info { padding: 16px 18px 20px; }
.char-info h3 { font-size: 1.2rem; font-weight: 600; }
.char-info p { color: var(--muted); font-size: .9rem; margin-top: 5px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; transition: transform .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(180, 76, 238, 0.14); margin-bottom: 16px; }
.feature-ico svg { width: 25px; height: 25px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 7px; }
.feature-card p { color: var(--muted); font-size: .93rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: transform .2s ease; }
.price-card.featured { border-color: rgba(180, 76, 238, 0.5); background: linear-gradient(180deg, rgba(180, 76, 238, 0.09), var(--surface) 40%); }
.price-card:hover { transform: translateY(-4px); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #ffffff; font-size: 12px; font-weight: 600; padding: 5px 15px; border-radius: 9999px; white-space: nowrap; text-shadow: 0 1px 2px rgba(0,0,0,.3); }
.price-name { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.price-amt { font-size: 2.5rem; font-weight: 700; margin: 5px 0 3px; letter-spacing: -1px; }
.price-amt span { font-size: .95rem; font-weight: 400; color: var(--muted); }
.price-desc { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; padding: 6px 0; color: #d4d4d4; }
.price-features svg { width: 17px; height: 17px; flex: none; margin-top: 3px; fill: none; stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.price-card .btn { width: 100%; }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; color: var(--text); font-family: var(--font); font-size: 1.02rem; font-weight: 600; text-align: left; padding: 20px 22px; cursor: pointer; }
.faq-q .ico { font-size: 1.5rem; color: var(--accent); flex: none; transition: transform .25s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: .96rem; }

.cta-band .box { text-align: center; background: var(--grad); border-radius: 22px; padding: 60px 40px; position: relative; overflow: hidden; }
.cta-band .box::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.32); }
.cta-band .box > * { position: relative; }
.cta-band .box h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: -.8px; color: #ffffff; text-shadow: 0 2px 6px rgba(0,0,0,.35); }
.cta-band .box p { color: rgba(255, 255, 255, 0.92); margin: 12px auto 26px; max-width: 520px; }
.cta-band .box .btn { background: #0d0d0d; color: #ffffff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); text-shadow: none; }
.cta-band .box .btn:hover { background: #000; }

.footer { border-top: 1px solid var(--border); padding: 56px 0 38px; background: var(--bg-2); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer-brand { max-width: 340px; }
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: 13px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-size: .93rem; margin-bottom: 13px; }
.footer-col a { display: block; color: var(--muted); font-size: .9rem; padding: 5px 0; transition: color .16s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 24px; }
.footer-bottom p { color: var(--muted); font-size: .84rem; }
.footer-langs { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-langs a { color: var(--muted); font-size: .84rem; transition: color .16s ease; }
.footer-langs a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) { .char-grid, .char-grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-links { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 6px; background: rgba(13, 13, 13, 0.97); backdrop-filter: blur(14px); padding: 16px 24px 22px; border-bottom: 1px solid var(--border); transform: translateY(-140%); transition: transform .3s ease; z-index: -1; }
    .nav-links.open { transform: translateY(0); }
    .nav-links > a { width: 100%; padding: 10px 0; }
    .features-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-strip { grid-template-columns: repeat(3, 1fr); }
    .hero-strip .hs:nth-child(4), .hero-strip .hs:nth-child(5) { display: none; }
}
@media (max-width: 620px) {
    .section { padding: 58px 0; }
    .char-grid, .char-grid.grid-4, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .hero { padding: 120px 0 56px; }
    .hero-strip { grid-template-columns: repeat(2, 1fr); }
    .hero-strip .hs:nth-child(even) { transform: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
