/* ===== Theme tokens ===== */
:root {
    --bg: #0b0d17;
    --bg-alt: #10132180;
    --surface: #161a2b;
    --surface-2: #1d2236;
    --border: #262c44;
    --text: #eef1fb;
    --muted: #9aa3c0;
    --brand: #6d8bff;
    --brand-2: #a855f7;
    --ok: #34d399;
    --warn: #fbbf24;
    --radius: 16px;
    --shadow: 0 20px 50px -20px rgba(0,0,0,.6);
    --maxw: 1140px;
}
:root[data-theme="light"] {
    --bg: #f6f7fb;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --surface-2: #f0f2f8;
    --border: #e4e7f0;
    --text: #141726;
    --muted: #5b6178;
    --shadow: 0 20px 50px -25px rgba(30,40,90,.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; scroll-padding-top: 80px; }
section[id], header[id] { scroll-margin-top: 80px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ===== Background decoration ===== */
.bg-decoration { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; }
.orb-1 { width: 500px; height: 500px; background: var(--brand); top: -150px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: var(--brand-2); top: 40%; right: -120px; }
.orb-3 { width: 380px; height: 380px; background: #22d3ee; bottom: -140px; left: 30%; opacity: .3; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: 15px; border: none; cursor: pointer;
    border-radius: 12px; padding: 12px 22px; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 10px 25px -10px var(--brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px var(--brand); }
.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-icon { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; width: 40px; height: 40px; font-size: 17px; cursor: pointer; color: var(--text); }
.btn-icon:hover { border-color: var(--brand); }

/* ===== Navbar ===== */
.navbar { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px); background: var(--bg-alt); border-bottom: 1px solid transparent; transition: border-color .3s; }
.navbar.scrolled { border-bottom-color: var(--border); }
.nav-container { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.brand-accent { color: var(--brand); }
.nav-menu { display: flex; gap: 28px; }
.nav-link { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-link:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { padding: 90px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.pill { display: inline-block; padding: 7px 14px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.grad-text { background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { color: var(--muted); font-size: 18px; margin: 20px 0 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 44px; }
.stat-num { display: block; font-size: 30px; font-weight: 800; }
.stat-label { color: var(--muted); font-size: 14px; }

/* Hero window mock */
.app-window { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transform: rotate(1deg); }
.win-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.win-title { margin-left: 10px; font-size: 13px; color: var(--muted); }
.win-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.win-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; background: var(--surface-2); }
.win-ico { font-size: 22px; }
.win-meta { flex: 1; display: flex; flex-direction: column; }
.win-meta small { color: var(--muted); font-size: 12px; }
.tag { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.tag.ok { background: rgba(52,211,153,.15); color: var(--ok); }
.tag.warn { background: rgba(251,191,36,.15); color: var(--warn); }
.tag.muted { background: var(--border); color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; color: var(--brand); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 12px 0; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 17px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .2s ease, border-color .2s ease; }
.card { transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px) scale(1.04) !important; border-color: var(--brand); box-shadow: 0 24px 50px -24px var(--brand); }

.feature-ico { width: 64px; height: 64px; display: grid; place-items: center; font-size: 30px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 22px -10px var(--brand); margin-bottom: 22px; }
.feature h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.feature p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { color: var(--muted); font-size: 14.5px; margin-bottom: 9px; padding-left: 24px; position: relative; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 700; }

/* Plugins */
.plugin-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s; }
.chip:hover { color: var(--text); }
.chip.active { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; border-color: transparent; }
.plugin-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.plugin-ico { font-size: 34px; }
.badge { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--surface-2); color: var(--brand); border: 1px solid var(--border); }
.plugin h3 { font-size: 18px; margin-bottom: 6px; }
.plugin p { color: var(--muted); font-size: 14px; min-height: 42px; }
.plugin-foot { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 14px; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.step-num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* Download */
.download-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding: 44px; }
.download-info h2 { font-size: 32px; font-weight: 800; margin: 10px 0; }
.download-info p { color: var(--muted); margin-bottom: 20px; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 10px; color: var(--muted); }
.download-box { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.dl-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 17px; }
.dl-ico { font-size: 24px; }
.dl-head .badge { margin-left: auto; }
.dl-meta { display: flex; justify-content: space-between; padding: 8px 0; color: var(--muted); font-size: 14px; border-bottom: 1px dashed var(--border); }
.download-box .btn { margin-top: 18px; }
.dl-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--brand); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); padding: 0 0 18px; }

/* CTA */
.cta { padding: 90px 0; text-align: center; }
.cta-inner { background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-radius: 24px; padding: 60px 30px; color: #fff; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
.cta-inner p { margin: 12px 0 26px; opacity: .92; }
.cta-inner .btn-primary { background: #fff; color: var(--brand); box-shadow: 0 12px 30px -12px rgba(0,0,0,.4); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 56px 0 30px; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand .brand-name { font-size: 20px; font-weight: 800; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 260px; }
.footer-col h4 { font-size: 15px; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .download-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .nav-menu { position: fixed; inset: 62px 0 auto; flex-direction: column; background: var(--surface); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .3s; }
    .nav-menu.open { transform: translateY(0); }
    .mobile-toggle { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-stats { gap: 24px; }
}

/* ===== Subpage shared ===== */
.page-hero { padding: 70px 0 30px; text-align: center; }
.page-hero .eyebrow { display: inline-block; }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -.6px; margin: 12px 0; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--text); }

/* Docs layout */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 40px 0 90px; align-items: start; }
.docs-sidebar { position: sticky; top: 90px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 18px; }
.docs-sidebar h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin: 14px 8px 8px; }
.docs-sidebar a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: 14px; }
.docs-sidebar a:hover, .docs-sidebar a.active { background: var(--surface-2); color: var(--text); }
.docs-content { max-width: 760px; }
.docs-content h2 { font-size: 26px; margin: 34px 0 12px; scroll-margin-top: 90px; }
.docs-content h2:first-child { margin-top: 0; }
.docs-content h3 { font-size: 19px; margin: 24px 0 8px; }
.docs-content p, .docs-content li { color: var(--muted); }
.docs-content ul, .docs-content ol { margin: 10px 0 10px 22px; }
.docs-content li { margin-bottom: 6px; }
.docs-content a { color: var(--brand); }
.callout { border: 1px solid var(--border); border-left: 3px solid var(--brand); background: var(--surface); border-radius: 10px; padding: 14px 18px; margin: 18px 0; color: var(--muted); font-size: 14px; }
pre.code { background: #0c0f1a; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; overflow-x: auto; margin: 14px 0; }
:root[data-theme="light"] pre.code { background: #0f1424; }
pre.code code { color: #d6dcf5; font-family: 'SFMono-Regular', Consolas, monospace; font-size: 13.5px; line-height: 1.6; }
.step-list { counter-reset: s; list-style: none; margin-left: 0 !important; }
.step-list li { counter-increment: s; position: relative; padding-left: 40px; margin-bottom: 14px; }
.step-list li::before { content: counter(s); position: absolute; left: 0; top: -2px; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center; }

/* Legal prose */
.prose { max-width: 780px; margin: 0 auto; padding: 20px 0 90px; }
.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.prose h2 { font-size: 22px; margin: 34px 0 10px; }
.prose h3 { font-size: 17px; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { margin: 10px 0 10px 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--brand); }

/* Support / cards grid reuse */
.link-card { display: block; }
.link-card .feature-ico { margin-bottom: 14px; }
.link-card h3 { display: flex; align-items: center; gap: 8px; }
.arrow { margin-left: auto; color: var(--brand); transition: transform .2s; }
.card:hover .arrow { transform: translateX(4px); }

/* Forum / threads */
.thread { display: flex; gap: 16px; align-items: center; padding: 18px 22px; }
.thread + .thread { border-top: 1px solid var(--border); }
.thread-ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); display: grid; place-items: center; color: #fff; font-weight: 700; flex-shrink: 0; }
.thread-main { flex: 1; }
.thread-main b { font-size: 15px; }
.thread-main small { display: block; color: var(--muted); font-size: 13px; }
.thread-meta { text-align: right; color: var(--muted); font-size: 13px; }
.thread-cat { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--surface-2); color: var(--brand); margin-bottom: 4px; }

/* Contact form */
.contact-form { display: grid; gap: 16px; max-width: 560px; margin: 0 auto; }
.contact-form label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text); font-family: inherit; font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--brand); }
.form-note { color: var(--ok); font-size: 14px; text-align: center; min-height: 20px; }

@media (max-width: 900px) {
    .docs-layout { grid-template-columns: 1fr; }
    .docs-sidebar { position: static; }
}
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--text); }

/* ==========================================================================
   ANIMATION LAYER — premium motion & polish
   ========================================================================== */

/* Floating, breathing background orbs */
.orb { animation: floatOrb 22s infinite ease-in-out; will-change: transform; }
.orb-1 { animation-delay: 0s; }
.orb-2 { animation-delay: -7s; }
.orb-3 { animation-delay: -14s; }
@keyframes floatOrb {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(40px,-30px) scale(1.12); }
    66%      { transform: translate(-30px,25px) scale(.92); }
}

/* Subtle animated mesh tint over everything */
.bg-decoration::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(closest-side at 20% 20%, rgba(109,139,255,.10), transparent 60%),
                radial-gradient(closest-side at 80% 70%, rgba(168,85,247,.10), transparent 60%);
    animation: meshShift 16s ease-in-out infinite alternate;
}
@keyframes meshShift { from { opacity:.6; } to { opacity:1; transform: translateY(-10px); } }

/* Animated gradient text (shimmer) */
.grad-text {
    background: linear-gradient(120deg, var(--brand), var(--brand-2), #22d3ee, var(--brand));
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmerText 6s linear infinite;
}
@keyframes shimmerText { to { background-position: 300% 0; } }

/* Pill glow pulse */
.pill { animation: pillGlow 3s ease-in-out infinite; }
@keyframes pillGlow {
    0%,100% { box-shadow: 0 0 0 rgba(109,139,255,0); }
    50%     { box-shadow: 0 0 22px rgba(109,139,255,.28); }
}

/* Hero window float + glow */
.app-window { animation: windowFloat 7s ease-in-out infinite; will-change: transform; }
@keyframes windowFloat {
    0%,100% { transform: rotate(1deg) translateY(0); }
    50%     { transform: rotate(1deg) translateY(-16px); }
}
.hero-visual { position: relative; }
.hero-visual::before {
    content: ""; position: absolute; inset: -40px; z-index: -1;
    background: radial-gradient(closest-side, rgba(109,139,255,.35), transparent 70%);
    filter: blur(30px); animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity:.5; } 50% { opacity:.9; } }

/* Animated stat bars inside hero window */
.win-row { position: relative; overflow: hidden; }
.win-row::after {
    content: ""; position: absolute; top: 0; left: -60%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
    animation: rowSweep 4.5s ease-in-out infinite;
}
.win-row:nth-child(2)::after { animation-delay: .6s; }
.win-row:nth-child(3)::after { animation-delay: 1.2s; }
.win-row:nth-child(4)::after { animation-delay: 1.8s; }
@keyframes rowSweep { 0% { left:-60%; } 60%,100% { left:120%; } }

/* Shine sweep on cards */
.card { position: relative; overflow: hidden; }
.card::before {
    content: ""; position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.08), transparent);
    transform: skewX(-18deg); transition: left .7s ease; pointer-events: none;
}
.card:hover::before { left: 140%; }

/* Buttons: animated gradient + glow ring */
.btn-primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-2), #22d3ee, var(--brand));
    background-size: 250% 100%;
    animation: btnFlow 6s linear infinite;
}
@keyframes btnFlow { to { background-position: 250% 0; } }
.btn-lg.btn-primary:hover { box-shadow: 0 0 0 4px rgba(109,139,255,.18), 0 18px 40px -14px var(--brand); }

/* Feature icons pop on hover */
.feature .feature-ico { transition: transform .3s ease; }
.feature:hover .feature-ico { transform: translateY(-4px) rotate(-6deg) scale(1.08); }

/* Chip active bounce */
.chip { transition: transform .2s ease, background .25s ease, color .2s ease, border-color .2s ease; }
.chip.active { transform: translateY(-1px); box-shadow: 0 8px 20px -10px var(--brand); }

/* Step number pulse ring */
.step-num { position: relative; }
.step-num::after {
    content: ""; position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid var(--brand); opacity: 0; animation: ring 3s ease-out infinite;
}
.step:nth-child(2) .step-num::after { animation-delay: 1s; }
.step:nth-child(3) .step-num::after { animation-delay: 2s; }
@keyframes ring { 0% { transform: scale(.8); opacity:.6; } 100% { transform: scale(1.6); opacity:0; } }

/* CTA moving gradient */
.cta-inner {
    background: linear-gradient(120deg, var(--brand), var(--brand-2), #22d3ee, var(--brand));
    background-size: 250% 100%; animation: btnFlow 8s linear infinite;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* Navbar link underline already; add brand icon spin-on-hover */
.brand:hover .brand-icon { animation: spinPop .6s ease; }
@keyframes spinPop { 0% { transform: rotate(0) scale(1);} 60% { transform: rotate(200deg) scale(1.1);} 100% { transform: rotate(360deg) scale(1);} }

/* 3D tilt hint */
.tilt { transform-style: preserve-3d; transition: transform .2s ease; }

/* Note: animations intentionally always run (site is motion-forward by design) */

/* ===== Line icons (Feather/Lucide style) ===== */
.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.feature-ico { color: #fff; }
.feature-ico .icon { width: 30px; height: 30px; }
.plugin-ico { color: var(--brand); display: grid; place-items: center; width: 44px; height: 44px; }
.plugin-ico .icon { width: 32px; height: 32px; }
.win-ico { color: var(--brand); display: grid; place-items: center; width: 26px; }
.win-ico .icon { width: 22px; height: 22px; }
.req-icon { color: var(--brand); display: grid; place-items: center; }
.req-icon .icon { width: 22px; height: 22px; }
.dl-ico { color: var(--brand); display: grid; place-items: center; }
.dl-ico .icon { width: 24px; height: 24px; }
.btn-icon .icon { width: 18px; height: 18px; margin: 0 auto; }
.pill .icon { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-right: 6px; color: var(--brand); }
.link-card .feature-ico { color: #fff; }
.req-list li { display: flex; align-items: center; gap: 10px; }
.theme-ico { width: 18px; height: 18px; }
