/*
Theme Name: Amawp
Theme URI: https://amawp.com
Author: Ama Affiliate Pro
Author URI: https://amawp.com
Description: Premium, fast-loading theme for amawp.com — the home of AI-powered growth tools for Amazon Associates publishers. Zero external dependencies, mobile-first, WCAG-conscious.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: amawp
*/

/* ══════════════════════════════════════════════════════════════════
   1. RESET
════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════════
   2. DESIGN TOKENS
════════════════════════════════════════════════════════════════════ */
:root {
    /* Brand — matches the plugin's own admin header */
    --navy-950: #0a1626;
    --navy-900: #0e1e33;
    --navy-800: #142d4a;
    --navy-700: #1e3a5f;
    --navy-600: #2a4d78;
    --orange: #ff9900;
    --orange-dark: #e07f00;
    --orange-light: #ffb84d;

    /* Neutrals */
    --ink: #0f172a;
    --slate: #475569;
    --slate-light: #64748b;
    --line: #e5e9f0;
    --line-soft: #eef1f6;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-alt: #f1f4f9;

    /* Semantic */
    --success: #16a34a;
    --success-bg: #ecfdf5;
    --warn-bg: #fffbeb;
    --info-bg: #eff6ff;

    /* Scale */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);
    --shadow-glow: 0 0 0 1px rgba(255,153,0,.15), 0 20px 50px rgba(255,153,0,.12);

    --container: 1180px;
    --container-wide: 1360px;
    --gutter: clamp(20px, 5vw, 40px);

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ══════════════════════════════════════════════════════════════════
   3. BASE TYPOGRAPHY
════════════════════════════════════════════════════════════════════ */
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--navy-900); }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { color: var(--slate); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--slate); line-height: 1.65; }
strong { color: var(--navy-900); }
code, kbd { font-family: var(--font-mono); background: var(--bg-alt); padding: .15em .45em; border-radius: 6px; font-size: .9em; }

/* ══════════════════════════════════════════════════════════════════
   4. LAYOUT UTILITIES
════════════════════════════════════════════════════════════════════ */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 108px); }
.section-tight { padding-block: clamp(36px, 6vw, 64px); }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--orange-dark); background: #fff4e0; padding: 6px 14px; border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════════
   5. BUTTONS
════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 700; font-size: .98rem; padding: 14px 26px; border-radius: var(--radius-pill);
    border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #1a1200; box-shadow: 0 10px 26px rgba(255,153,0,.35); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(255,153,0,.45); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-900); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--navy-900); }
.btn-outline:hover { border-color: var(--navy-700); background: var(--bg-soft); }
.btn-ghost-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

/* ══════════════════════════════════════════════════════════════════
   6. SITE HEADER / NAV
════════════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--navy-900); }
.brand__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
    color: var(--orange); font-size: 1.15rem; box-shadow: var(--shadow-sm);
}
.brand__text b { color: var(--orange-dark); }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
    display: inline-block; padding: 10px 16px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: .95rem; color: var(--slate); transition: color .2s, background .2s;
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--navy-900); background: var(--bg-alt); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
    display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px; background: var(--navy-900); position: relative; transition: transform .25s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 900px) {
    .primary-nav { position: fixed; inset: 76px 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
        padding: 20px; gap: 6px; transform: translateY(-12px); opacity: 0; visibility: hidden;
        transition: opacity .25s, transform .25s, visibility .25s; overflow-y: auto; }
    .primary-nav a { padding: 14px 16px; font-size: 1.05rem; }
    .site-header.nav-open .primary-nav { opacity: 1; transform: none; visibility: visible; }
    .header-cta .btn-outline { display: none; }
    .nav-toggle { display: inline-flex; }
}

/* ══════════════════════════════════════════════════════════════════
   7. HERO
════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative; overflow: hidden; color: #fff;
    background: radial-gradient(1100px 520px at 15% -10%, rgba(255,153,0,.22), transparent 60%),
                radial-gradient(900px 500px at 100% 10%, rgba(42,77,120,.55), transparent 55%),
                linear-gradient(160deg, var(--navy-950), var(--navy-800) 60%, var(--navy-700));
    padding-block: clamp(72px, 11vw, 128px) clamp(64px, 9vw, 100px);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--orange-light), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { color: rgba(255,255,255,.82); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 600; }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

/* Pure-CSS "product mockup" panel — zero image weight */
.mockup { position: relative; border-radius: var(--radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); overflow: hidden; }
.mockup__bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: rgba(0,0,0,.18); border-bottom: 1px solid rgba(255,255,255,.08); }
.mockup__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
.mockup__dot:nth-child(1) { background: #ff5f57; } .mockup__dot:nth-child(2) { background: #febc2e; } .mockup__dot:nth-child(3) { background: #28c840; }
.mockup__body { padding: 22px; display: grid; gap: 14px; }
.mockup__row { display: flex; align-items: center; gap: 12px; }
.mockup__icon { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(145deg, var(--orange), var(--orange-dark)); flex-shrink: 0; }
.mockup__lines { flex: 1; display: grid; gap: 7px; }
.mockup__line { height: 9px; border-radius: 5px; background: rgba(255,255,255,.16); }
.mockup__line.w-70 { width: 70%; } .mockup__line.w-45 { width: 45%; } .mockup__line.w-90 { width: 90%; } .mockup__line.w-55 { width: 55%; }
.mockup__stat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.mockup__stat div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 12px; text-align: center; }
.mockup__stat b { display: block; font-size: 1.25rem; color: var(--orange-light); }
.mockup__stat span { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }
.mockup__glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--orange); opacity: .28; filter: blur(80px); top: -60px; right: -60px; pointer-events: none; }

/* ══════════════════════════════════════════════════════════════════
   8. PROBLEM / SOLUTION + HOW IT WORKS
════════════════════════════════════════════════════════════════════ */
.problem-band { background: var(--bg-soft); }
.pain-list li, .win-list li { display: flex; gap: 12px; padding: 10px 0; font-weight: 600; color: var(--navy-800); align-items: flex-start; }
.pain-list svg { color: #dc2626; flex-shrink: 0; margin-top: 3px; }
.win-list svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.pain-win-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .pain-win-grid { grid-template-columns: 1fr; } }
.pain-win-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 34px); }
.pain-win-card h3 { margin-bottom: 6px; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; position: relative; }
@media (max-width: 1040px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: left; }
.step__num {
    width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, var(--navy-700), var(--navy-900)); color: var(--orange); font-weight: 800; margin-bottom: 16px;
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: .92rem; margin: 0; }

/* ══════════════════════════════════════════════════════════════════
   9. FEATURE / PLUGIN / PRICING CARDS
════════════════════════════════════════════════════════════════════ */
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card__icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--info-bg); color: var(--navy-700); font-size: 1.35rem; margin-bottom: 16px; }
.feature-card h4 { margin-bottom: 6px; }
.feature-card p { font-size: .92rem; margin: 0; }

.plugin-card { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 24px; background: linear-gradient(145deg, var(--navy-900), var(--navy-800)); color: #fff; border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-lg); overflow: hidden; }
@media (max-width: 700px) { .plugin-card { grid-template-columns: 1fr; } }
.plugin-card__icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(145deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 10px 24px rgba(255,153,0,.35); }
.plugin-card h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.plugin-card p { color: rgba(255,255,255,.72); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; }
.chip { font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.plugin-card__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.plugin-card__price { font-size: .85rem; color: rgba(255,255,255,.6); }
.plugin-card__price b { color: var(--orange-light); font-size: 1.05rem; }

.coming-soon-card { border: 1.5px dashed var(--line); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; color: var(--slate-light); background: var(--bg-soft); }
.coming-soon-card .lock { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--slate-light); }
.coming-soon-card h4 { color: var(--slate); margin-bottom: 6px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; display: flex; flex-direction: column; }
.price-card.is-popular { border-color: var(--orange); box-shadow: var(--shadow-glow); transform: translateY(-6px); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #1a1200; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.price-card__plan { font-weight: 700; color: var(--slate); font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.price-card__amount { font-size: 2.1rem; font-weight: 800; color: var(--navy-900); margin-bottom: 4px; }
.price-card__amount span { font-size: .95rem; color: var(--slate-light); font-weight: 600; }
.price-card__note { font-size: .82rem; color: var(--slate-light); margin-bottom: 22px; }
.price-card ul { display: grid; gap: 10px; margin-bottom: 26px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: .9rem; color: var(--slate); align-items: flex-start; }
.price-card li svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* ══════════════════════════════════════════════════════════════════
   10. FAQ ACCORDION
════════════════════════════════════════════════════════════════════ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-weight: 700; font-size: 1rem; color: var(--navy-900); }
.faq-item__q .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease), background .3s; font-size: 1.1rem; color: var(--navy-700); }
.faq-item.is-open .faq-item__q .plus { transform: rotate(45deg); background: var(--orange); color: #1a1200; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item__a-inner { padding: 0 22px 20px; color: var(--slate); font-size: .95rem; line-height: 1.65; }
.faq-item.is-open .faq-item__a { max-height: 400px; }

/* ══════════════════════════════════════════════════════════════════
   11. CTA BAND
════════════════════════════════════════════════════════════════════ */
.cta-band {
    position: relative; overflow: hidden; border-radius: var(--radius-lg); color: #fff; text-align: center;
    padding: clamp(48px, 7vw, 76px) clamp(24px, 6vw, 60px);
    background: radial-gradient(700px 320px at 50% -20%, rgba(255,153,0,.28), transparent 60%),
                linear-gradient(150deg, var(--navy-950), var(--navy-700));
    margin-inline: var(--gutter);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* ══════════════════════════════════════════════════════════════════
   12. FOOTER
════════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding-top: clamp(56px, 8vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.55); margin-top: 14px; max-width: 300px; font-size: .92rem; }
.footer-col h5 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social a:hover { background: var(--orange); color: #1a1200; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding-block: 24px; font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════════════════════
   13. BLOG / SINGLE / ARCHIVE
════════════════════════════════════════════════════════════════════ */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line-soft); padding-block: clamp(48px, 7vw, 76px); }
.breadcrumb { font-size: .85rem; color: var(--slate-light); margin-bottom: 14px; }
.breadcrumb a { color: var(--slate-light); } .breadcrumb a:hover { color: var(--navy-700); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__thumb { aspect-ratio: 16/9; background: linear-gradient(145deg, var(--navy-800), var(--navy-600)); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.8rem; }
.post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__meta { font-size: .78rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.post-card h3 { font-size: 1.1rem; }
.post-card p { font-size: .9rem; flex: 1; }
.post-card__more { font-size: .85rem; font-weight: 700; color: var(--orange-dark); margin-top: 4px; }

.entry-content { max-width: 760px; margin-inline: auto; }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2 { margin-top: 2em; }
.entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { border-left: 3px solid var(--orange); padding-left: 18px; color: var(--slate); font-style: italic; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; color: var(--slate); }
.entry-content ul li, .entry-content ol li { margin-bottom: .4em; }
.entry-content a { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.entry-content a:hover { text-decoration-color: var(--orange); }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination a, .pagination span { padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); font-weight: 600; font-size: .9rem; }
.pagination .current { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* ══════════════════════════════════════════════════════════════════
   14. GET STARTED / PIPELINE PAGE
════════════════════════════════════════════════════════════════════ */
.pipeline { max-width: 880px; margin-inline: auto; position: relative; }
.pipeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--line), var(--line)); background-image: repeating-linear-gradient(to bottom, var(--line) 0 8px, transparent 8px 16px); }
@media (max-width: 640px) { .pipeline::before { left: 22px; } }
.pipeline-step { position: relative; display: flex; gap: 24px; padding-bottom: 44px; }
.pipeline-step:last-child { padding-bottom: 0; }
.pipeline-step__num { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(145deg, var(--navy-700), var(--navy-900)); color: var(--orange); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 1; }
@media (max-width: 640px) { .pipeline-step__num { width: 44px; height: 44px; font-size: 1rem; } }
.pipeline-step__body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; flex: 1; }
.pipeline-step__body h3 { margin-bottom: 8px; }
.pipeline-step__body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════════
   15. MISC COMPONENTS
════════════════════════════════════════════════════════════════════ */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 18px; font-size: .85rem; font-weight: 700; color: var(--navy-800); }
.trust-badge svg { color: var(--success); width: 18px; height: 18px; }
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff;
    box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy-900); color: #fff; padding: 12px 20px; z-index: 999; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }
::selection { background: var(--orange); color: #1a1200; }

@media (max-width: 640px) {
    .plugin-card__actions { flex-direction: column; align-items: stretch; }
    .plugin-card__actions .btn { width: 100%; }
}
