/* swiads marketing site: standalone styles.
   Separate from the extension's /styles.css. Nothing here affects the extension.
   Aesthetic mirrors the product: soft pastel gradients, frosted glass, rounded type. */

:root {
    --font-head: 'Fredoka', system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --ink: #2f2a48;
    --body: #5d5776;
    --muted: #8b85a2;

    --pink: #f6b8d2;
    --pink-deep: #ef9ec1;
    --lav: #c3b3ec;
    --lav-deep: #a78fe2;
    --mint: #a9e3cc;
    --mint-deep: #83d3af;
    --blue: #b9ccf0;

    --grad-brand: linear-gradient(115deg, #f6b6d1 0%, #c3b2ec 52%, #a7e0c9 100%);
    --grad-icon: linear-gradient(135deg, #f6b8d2 0%, #c3b3ec 55%, #a9e3cc 100%);

    --glass: rgba(255, 255, 255, 0.72);
    --glass-strong: rgba(255, 255, 255, 0.9);
    --border: rgba(255, 255, 255, 0.7);
    --hairline: rgba(120, 100, 160, 0.12);

    --radius: 24px;
    --radius-sm: 16px;
    --radius-pill: 999px;
    --shadow: 0 18px 45px rgba(150, 125, 195, 0.16);
    --shadow-sm: 0 8px 24px rgba(150, 125, 195, 0.14);
    --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--body);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(55% 45% at 12% -5%, rgba(246, 182, 210, 0.40), transparent 60%),
        radial-gradient(50% 45% at 88% 6%, rgba(169, 227, 204, 0.34), transparent 62%),
        radial-gradient(60% 55% at 50% 108%, rgba(195, 179, 236, 0.30), transparent 60%),
        #fdfbff;
    background-attachment: fixed;
}

h1, h2, h3, .brand { font-family: var(--font-head); color: var(--ink); line-height: 1.14; margin: 0; font-weight: 600; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Accessibility (no default visual change) ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 200;
    padding: 12px 18px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: var(--glass-strong);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.skip-link:focus,
.skip-link:focus-visible {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--lav-deep);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .14s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-brand); color: var(--ink); box-shadow: 0 10px 26px rgba(196, 150, 205, 0.45); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(196, 150, 205, 0.55); }
.btn-secondary { background: var(--glass-strong); color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { color: var(--lav-deep); }
.btn-ghost { padding: 9px 18px; font-size: 14px; background: var(--glass); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-light { background: #ffffff; color: var(--ink); box-shadow: 0 10px 26px rgba(120, 90, 150, 0.28); }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(253, 251, 255, 0.72);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--hairline);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 600; letter-spacing: .3px; }
.brand-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-icon); box-shadow: var(--shadow-sm); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { font-weight: 600; font-size: 15px; color: var(--body); }
.nav-links > a:hover { color: var(--lav-deep); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 56px; position: relative; }
.hero::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(246, 182, 210, 0.28), transparent 68%);
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.pill {
    display: inline-block; padding: 7px 16px; border-radius: var(--radius-pill);
    background: var(--glass); border: 1px solid var(--border);
    color: var(--lav-deep); font-weight: 700; font-size: 13px; box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 600; letter-spacing: -0.5px; }
.hero-sub { max-width: 540px; margin-top: 20px; font-size: 18px; color: var(--body); line-height: 1.55; }
.save-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    vertical-align: middle;
    margin: 0 2px;
    padding: 5px 13px;
    border-radius: 999px;
    border: none;
    background: var(--grad-brand);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    box-shadow: 0 2px 8px rgba(196, 150, 205, 0.35);
    white-space: nowrap;
}
.save-pill-icon {
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    color: #ffffff;
}
.save-pill-text {
    display: inline-block;
    color: #ffffff;
}
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 14px; color: var(--muted); font-weight: 600; }

/* ---------- Extension preview (hero visual) ---------- */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.extension-preview {
    position: relative;
    width: min(100%, 380px);
}
.extension-preview-glow {
    position: absolute;
    inset: 12% 8% -8%;
    background: radial-gradient(ellipse at center, rgba(195, 179, 236, 0.55), rgba(169, 227, 204, 0.25) 45%, transparent 72%);
    filter: blur(28px);
    z-index: 0;
}
.popup-mock {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 22px 20px 18px;
    border-radius: 28px;
    background:
        radial-gradient(80% 40% at 0% 0%, rgba(246, 182, 210, 0.45), transparent 60%),
        radial-gradient(80% 40% at 100% 0%, rgba(195, 179, 236, 0.45), transparent 60%),
        radial-gradient(90% 60% at 50% 110%, rgba(169, 227, 204, 0.4), transparent 60%),
        rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 6px rgba(120, 90, 150, 0.06),
        0 24px 48px rgba(150, 120, 190, 0.22),
        0 48px 80px rgba(150, 120, 190, 0.1);
    backdrop-filter: blur(10px);
}
.pm-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 2px 2px 0;
}
.pm-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad-icon);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.pm-identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}
.pm-brand {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.1;
}
.pm-email {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
.pm-gear {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--body);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.pm-plan {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.pm-plan-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(195, 179, 236, 0.2);
    display: grid;
    place-items: center;
    color: var(--ink);
    flex-shrink: 0;
}
.pm-plan-text {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}
.pm-upgrade {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    white-space: nowrap;
    flex-shrink: 0;
}
.pm-status {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #3a9d78;
    background: rgba(169, 227, 204, 0.38);
    border-radius: 16px;
    padding: 13px 14px;
    margin-bottom: 14px;
}
.pm-status .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #35b083;
    margin-right: 6px;
    vertical-align: middle;
}
.pm-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 15px 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.pm-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}
.pm-icon-ads { background: linear-gradient(135deg, #f0a8c8, #b9a0e6); }
.pm-icon-social { background: linear-gradient(135deg, #c3b3ec, #a9e3cc); }
.pm-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}
.pm-text strong {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
}
.pm-text span {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 2px;
}
.pm-chevron {
    margin-left: auto;
    color: var(--muted);
    font-size: 16px;
    flex-shrink: 0;
}
.pm-myswipes {
    width: 100%;
    border: none;
    cursor: default;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    background: var(--grad-brand);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(196, 150, 205, 0.4);
    margin: 4px 0 18px;
}
.pm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--hairline);
    padding-top: 16px;
}
.pm-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}
.pm-switch {
    position: relative;
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: var(--grad-brand);
    flex-shrink: 0;
}
.pm-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.pm-report {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}

/* ---------- Platforms strip ---------- */
.platforms-strip { padding: 26px 0 8px; }
.strip-label { text-align: center; color: var(--muted); font-weight: 700; font-size: 13px; letter-spacing: .4px; text-transform: uppercase; margin: 0 0 16px; }
.platform-row {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(9, 52px);
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}
@media (max-width: 720px) {
    .platform-row {
        grid-template-columns: repeat(5, 52px);
    }
}
.platform-item { flex-shrink: 0; }
.platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #eeebf3;
    display: grid;
    place-items: center;
    color: #111;
}
.platform-icon img,
.platform-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-soft { position: relative; }
.section-compact-top { padding-top: 44px; }
.section-title { text-align: center; font-size: clamp(28px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.4px; }
.section-lead { text-align: center; color: var(--body); font-size: 17px; margin: 14px auto 0; max-width: 620px; }

/* ---------- Feature cards ---------- */
.cards { margin-top: 50px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
    background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 55px rgba(150, 125, 195, 0.22); }
.card-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.i-pink { background: linear-gradient(135deg, #f4a9c6, #ef9ec1); }
.i-lav  { background: linear-gradient(135deg, #c3b3ec, #a78fe2); }
.i-mint { background: linear-gradient(135deg, #a9e3cc, #83d3af); }
.i-blue { background: linear-gradient(135deg, #b9ccf0, #9db9ee); }
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.card p { margin: 0; color: var(--body); font-size: 15px; }

/* ---------- Library mock ---------- */
.library-mock {
    margin-top: 48px; display: grid; grid-template-columns: 230px 1fr; gap: 0;
    background: var(--glass-strong); border: 1px solid var(--border);
    border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); min-height: 460px;
}
.lib-sidebar { padding: 22px 18px; background: linear-gradient(180deg, rgba(246,182,210,.22), rgba(195,179,236,.14)); border-right: 1px solid var(--hairline); display: flex; flex-direction: column; }
.lib-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.lib-logo { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-icon); flex-shrink: 0; }
.lib-brand strong { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 16px; }
.lib-brand span { font-size: 12px; color: var(--muted); }
.lib-nav { list-style: none; padding: 0; margin: 0 0 18px; }
.lib-nav li { padding: 9px 12px; border-radius: 12px; font-weight: 600; font-size: 14px; color: var(--body); margin-bottom: 3px; }
.lib-nav li.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.lib-nav li.dim { color: var(--muted); font-weight: 600; }
.lib-section { font-size: 11px; font-weight: 800; letter-spacing: .6px; color: var(--muted); margin: 6px 6px 8px; }
.space-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--pink-deep); margin-right: 6px; }
.lib-account { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid var(--hairline); font-size: 13px; font-weight: 600; color: var(--body); }
.lib-account em { font-style: normal; background: var(--mint); color: #2f2a48; border-radius: 8px; padding: 0 7px; font-size: 11px; margin-left: 6px; }
.lib-account b { background: var(--glass); border: 1px solid var(--border); color: var(--muted); border-radius: 8px; padding: 1px 7px; font-size: 10px; margin-left: 6px; font-weight: 800; }

.lib-grid { padding: 20px; columns: 3; column-gap: 16px; background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(169,227,204,.12)); }
.swipe-card { break-inside: avoid; margin-bottom: 16px; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.thumb {
    position: relative;
    display: block;
    height: clamp(120px, 22vw, 148px);
    overflow: hidden;
}
.thumb.tall { height: clamp(168px, 30vw, 210px); }
.thumb.art::before,
.thumb.art::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

/* Light pastel CSS art — no greys, no brand-mark shapes, soft color only */
.art-orbits {
    background:
        radial-gradient(circle at 78% 22%, #ffd4e8 0 28%, transparent 29%),
        radial-gradient(circle at 18% 78%, #c9f0df 0 22%, transparent 23%),
        linear-gradient(155deg, #ffe8f2, #e8dffc);
}
.art-orbits::before {
    width: 42%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: clamp(6px, 1.4vw, 10px) solid #f4b8d4;
    top: -8%;
    right: -6%;
}
.art-orbits::after {
    width: 26%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #b8e8d4;
    bottom: 14%;
    left: 12%;
    box-shadow: 2.2em -1.4em 0 -0.35em #d4c8f5;
}

.art-ribbons {
    background: linear-gradient(175deg, #fff1e4, #ffe0ef 55%, #e6e0ff);
}
.art-ribbons::before {
    left: -15%;
    right: -15%;
    top: 28%;
    height: clamp(14px, 3vw, 22px);
    background: #ffc2d9;
    transform: rotate(-9deg);
    border-radius: 999px;
}
.art-ribbons::after {
    left: -15%;
    right: -15%;
    bottom: 30%;
    height: clamp(10px, 2.2vw, 16px);
    background: #c5b6f0;
    transform: rotate(7deg);
    border-radius: 999px;
}

.art-blocks {
    background: linear-gradient(140deg, #dff4ff, #d8f5e8);
}
.art-blocks::before {
    width: 46%;
    height: 54%;
    left: 12%;
    top: 18%;
    background: #f7c4dc;
    border-radius: 22% 28% 20% 30%;
}
.art-blocks::after {
    width: 36%;
    height: 40%;
    right: 10%;
    bottom: 14%;
    background: #c9b8f2;
    border-radius: 30% 22% 28% 24%;
}

.art-arcs {
    background: radial-gradient(circle at 35% 75%, #ffd6ea, #e4dcff 48%, #d5f0ff);
}
.art-arcs::before {
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: clamp(8px, 1.8vw, 14px) solid #f2b4d0;
    left: -22%;
    bottom: -28%;
}
.art-arcs::after {
    width: 38%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: clamp(6px, 1.4vw, 10px) solid #b5e6d2;
    right: 10%;
    top: 12%;
}

.art-grid {
    background:
        radial-gradient(circle at 1px 1px, #f3b6d2 1.4px, transparent 1.6px) 0 0 / clamp(16px, 3.5vw, 22px) clamp(16px, 3.5vw, 22px),
        linear-gradient(150deg, #ffe9f3, #ebe4ff);
}
.art-grid::before {
    width: 34%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #b8ebd6;
    top: 16%;
    left: 14%;
}
.art-grid::after {
    width: 22%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ffd4a8;
    right: 16%;
    bottom: 18%;
    box-shadow: -1.6em -1em 0 0 #d0c0f5;
}

.art-waves {
    background: linear-gradient(180deg, #e8fff6, #e0efff 50%, #f0e6ff);
}
.art-waves::before,
.art-waves::after {
    left: -25%;
    right: -25%;
    height: 45%;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.art-waves::before {
    bottom: 18%;
    background: #c8f0df;
    opacity: .9;
}
.art-waves::after {
    bottom: -8%;
    background: #d8c8f5;
    opacity: .85;
}

.art-dots {
    background: linear-gradient(160deg, #fff3e8, #ffe6f2);
}
.art-dots::before {
    inset: 0;
    background-image: radial-gradient(circle, #f0a8c8 2.2px, transparent 2.4px);
    background-size: clamp(16px, 3.6vw, 22px) clamp(16px, 3.6vw, 22px);
}
.art-dots::after {
    width: 48%;
    aspect-ratio: 1;
    border-radius: 42% 58% 55% 45%;
    background: #c5ebe0;
    right: 8%;
    top: 18%;
    box-shadow: -1.8em 1.2em 0 -0.2em #dccff5;
}

.art-stack {
    background: linear-gradient(165deg, #fff0e6, #ffe8f4);
}
.art-stack::before {
    width: 58%;
    height: 48%;
    left: 21%;
    top: 18%;
    background: #f5bfd8;
    border-radius: 28% 32% 30% 34%;
    box-shadow:
        0.55em 0.65em 0 0 #cbb8f0,
        1.1em 1.3em 0 0 #b6e8d4;
}
.art-stack::after {
    width: 16%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ffd6a8;
    left: 14%;
    bottom: 14%;
}

.art-split {
    background: linear-gradient(105deg, #ffd9ea 0 46%, #d4f0e6 46% 100%);
}
.art-split::before {
    width: 36%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #e0d4ff;
    left: 32%;
    top: 28%;
}
.art-split::after {
    width: 18%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ffd4b0;
    right: 14%;
    bottom: 16%;
    box-shadow: -3.2em -2.4em 0 0 #b8e4f5;
}

.thumb .sponsored {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 1;
    background: rgba(255,255,255,.92);
    color: var(--pink-deep);
    font-style: normal;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: .3px;
    padding: 3px 8px;
    border-radius: 8px;
    text-transform: uppercase;
}
.thumb .platform-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-style: normal;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 1px 4px rgba(244, 169, 198, 0.55));
}
.thumb .platform-badge::after {
    content: "";
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    -webkit-mask: var(--platform-icon) center / contain no-repeat;
    mask: var(--platform-icon) center / contain no-repeat;
}
.thumb .platform-badge[data-platform="instagram"] { --platform-icon: url("assets/icons/instagram.svg"); }
.thumb .platform-badge[data-platform="meta"] { --platform-icon: url("assets/icons/meta.svg"); }
.thumb .platform-badge[data-platform="tiktok"] { --platform-icon: url("assets/icons/tiktok.svg"); }
.thumb .platform-badge[data-platform="pinterest"] { --platform-icon: url("assets/icons/pinterest.svg"); }
.thumb .platform-badge[data-platform="google"] { --platform-icon: url("assets/icons/google.svg"); }
.thumb .platform-badge[data-platform="x"] { --platform-icon: url("assets/icons/x.svg"); }
.meta { display: flex; align-items: center; gap: 8px; padding: 10px 12px; font-weight: 700; font-size: 12.5px; color: var(--ink); }
.meta .ava { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.meta-clock {
    margin-left: auto;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .45;
    background: center / contain no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7494' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.a1 { background: linear-gradient(135deg, #f4a9c6, #ef9ec1); }
.a2 { background: linear-gradient(135deg, #c3b3ec, #a78fe2); }
.a3 { background: linear-gradient(135deg, #a9e3cc, #83d3af); }
.a4 { background: linear-gradient(135deg, #b9ccf0, #9db9ee); }
.a5 { background: linear-gradient(135deg, #ffd9a8, #f6b8d2); }
.a6 { background: linear-gradient(135deg, #a9e3cc, #b9ccf0); }

/* ---------- Steps (vertical timeline) ---------- */
.steps {
    list-style: none;
    padding: 0;
    margin: 50px auto 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px 20px;
    align-items: start;
    padding: 0 0 28px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.step:last-child { padding-bottom: 0; }
.step::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(195, 179, 236, 0.55), rgba(169, 227, 204, 0.25));
}
.step:last-child::before { display: none; }
.step-num {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #ffffff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    box-shadow: var(--shadow-sm);
}
.step h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 8px 0 6px;
    font-size: 18px;
    font-weight: 600;
}
.step p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: var(--body);
    font-size: 15px;
    max-width: 52ch;
}

/* ---------- Pricing ---------- */
.pricing-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; align-items: start; }
.plan {
    position: relative; background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 28px; box-shadow: var(--shadow); text-align: center;
}
.plan-featured { border: none; background: var(--glass-strong); box-shadow: 0 26px 60px rgba(180, 140, 205, 0.28); transform: translateY(-8px); }
.plan-featured::before { content: ""; position: absolute; inset: -2px; border-radius: calc(var(--radius) + 2px); padding: 2px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 12px; padding: 5px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.plan-name { font-size: 22px; font-weight: 600; }
.plan-tagline { color: var(--muted); font-size: 14px; margin: 4px 0 0; }
.plan-price { margin: 18px 0 20px; }
.plan-price .amount { font-family: var(--font-head); font-weight: 700; font-size: 42px; color: var(--ink); }
.plan-price .per { color: var(--muted); font-weight: 700; font-size: 16px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.plan-features li { position: relative; padding: 9px 0 9px 28px; font-size: 14.5px; color: var(--body); border-bottom: 1px solid var(--hairline); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; border-radius: 50%; background: var(--mint); color: #2f7d5c; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.pricing-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 26px; }
.pricing-empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 36px 32px;
    text-align: center;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.pricing-empty-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
}
.pricing-empty p {
    margin: 0 0 24px;
    font-size: 16px;
    color: var(--body);
    line-height: 1.55;
}

/* ---------- Waitlist page ---------- */
.waitlist-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: start;
    max-width: 920px;
    margin: 0 auto;
}

.waitlist-panel,
.waitlist-aside {
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px 28px;
}

.waitlist-panel-title,
.waitlist-aside-title {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
}

.waitlist-panel-lead {
    margin: 0 0 24px;
    color: var(--body);
    font-size: 16px;
    line-height: 1.55;
}

.waitlist-form {
    display: grid;
    gap: 16px;
}

.waitlist-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.waitlist-optional {
    font-weight: 600;
    color: var(--muted);
}

.waitlist-field input,
.waitlist-field select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    box-shadow: inset 0 1px 2px rgba(120, 100, 160, 0.05);
}

.waitlist-field input:focus-visible,
.waitlist-field select:focus-visible {
    outline: 2px solid var(--lav-deep);
    outline-offset: 2px;
    border-color: var(--lav-deep);
}

.waitlist-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.waitlist-message {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.waitlist-message-error {
    color: #b45309;
    font-weight: 600;
}

.waitlist-success {
    padding: 20px 18px;
    border-radius: var(--radius-sm);
    background: rgba(169, 227, 204, 0.22);
    border: 1px solid rgba(131, 211, 175, 0.45);
}

.waitlist-success h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.waitlist-success p {
    margin: 0;
    color: var(--body);
}

.waitlist-fineprint {
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.waitlist-fineprint a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.waitlist-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.waitlist-benefits li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 15px;
    color: var(--body);
    border-bottom: 1px solid var(--hairline);
}

.waitlist-benefits li:last-child {
    border-bottom: none;
}

.waitlist-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mint);
    color: #2f7d5c;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.waitlist-embed iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius-sm);
}

@media (max-width: 820px) {
    .waitlist-layout {
        grid-template-columns: 1fr;
    }
}

/* ---------- Blog ---------- */
.blog-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}
.blog-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 26px 24px;
}
.blog-meta {
    margin: 0 0 10px;
    color: var(--lav-deep);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.blog-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-card p {
    margin: 0;
    font-size: 15px;
    color: var(--body);
}
.blog-link {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--lav-deep);
}
.blog-link:hover { color: var(--ink); }

/* ---------- Blog article page ---------- */
.article-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.article-meta {
    margin: 0;
    color: var(--lav-deep);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.article-title {
    margin: 10px 0 14px;
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--ink);
}
.article-intro {
    margin: 0;
    font-size: 18px;
    color: var(--body);
}
.article-body {
    margin-top: 30px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 34px 30px;
}
.article-body h2 {
    margin: 22px 0 10px;
    font-size: 28px;
    font-weight: 600;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--body);
}
.article-body ul {
    margin: 0 0 14px;
    padding-left: 22px;
}
.article-body li {
    margin-bottom: 10px;
    color: var(--body);
}
.legal-doc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    background: var(--glass-strong);
}
.legal-doc h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}
.legal-doc a {
    color: var(--lav-deep);
    font-weight: 700;
}
.role-block {
    margin: 8px 0 28px;
    padding: 22px 22px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.55);
}
.role-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 16px;
    margin-bottom: 8px;
}
.role-meta h3 {
    margin: 0;
    font-size: 22px;
}
.role-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lav-deep);
}
.role-block h3 {
    margin-top: 18px;
}

/* ---------- Careers page ---------- */
.careers-hero {
    padding: 72px 0 56px;
    text-align: center;
}
.careers-hero-inner { max-width: 640px; }
.careers-kicker {
    margin: 0 0 14px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.careers-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.careers-intro {
    margin: 0 auto;
    max-width: 520px;
    font-size: 17px;
    color: var(--body);
    font-weight: 600;
}
.careers-listings {
    padding: 10px 0 40px;
}
.careers-list {
    max-width: 920px;
    display: grid;
    gap: 14px;
}
.job-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 16px 24px;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.job-row:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 143, 226, 0.35);
    box-shadow: var(--shadow);
}
.job-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}
.job-meta {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--muted);
    justify-self: center;
}
.job-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--hairline);
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}
.job-row:hover .job-cta {
    border-color: rgba(167, 143, 226, 0.4);
    color: var(--lav-deep);
}
.job-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 28px 30px;
    text-align: center;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.job-empty-title {
    margin: 0 0 10px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}
.job-empty p {
    margin: 0;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--body);
}
.job-empty a {
    color: var(--lav-deep);
    font-weight: 800;
}

/* Job detail page */
.job-page {
    padding: 48px 0 64px;
}
.job-page-col {
    max-width: 720px;
    margin: 0 auto;
}
.job-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}
.job-breadcrumb a {
    color: var(--body);
    text-decoration: none;
}
.job-breadcrumb a:hover { color: var(--lav-deep); }
.job-breadcrumb span:last-child { color: var(--ink); }
.job-page-col > h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.job-page-meta {
    margin: 0 0 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
}
.job-apply-block {
    width: 100%;
    margin-bottom: 18px;
    padding: 20px 24px;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.job-apply-block p {
    margin: 0;
    font-size: 15.5px;
    color: var(--body);
    font-weight: 600;
}
.job-apply-block a {
    color: var(--lav-deep);
    font-weight: 800;
}
.job-description {
    width: 100%;
    padding: 36px 34px;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.job-description h2 {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}
.job-description h3 {
    margin: 24px 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}
.job-description p {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--body);
}
.job-description ul {
    margin: 0 0 8px;
    padding-left: 22px;
}
.job-description li {
    margin-bottom: 8px;
    color: var(--body);
}
.job-description a {
    color: var(--lav-deep);
    font-weight: 700;
}
.job-description-aside {
    margin-top: 28px !important;
    padding-top: 20px;
    border-top: 1px solid var(--hairline);
    font-size: 15px !important;
    color: var(--muted) !important;
}
@media (max-width: 720px) {
    .job-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .job-meta { justify-self: start; }
    .job-cta { justify-self: start; }
    .job-description { padding: 26px 20px; }
}

.article-byline {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.layout-with-toc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 36px;
    align-items: start;
    padding-bottom: 48px;
}
.toc-sidebar {
    position: sticky;
    top: 96px;
    padding: 18px 16px;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.toc-title {
    margin: 0 0 10px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}
.article-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.article-toc li { margin: 0 0 8px; }
.article-toc a {
    color: var(--body);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
}
.article-toc a:hover { color: var(--lav-deep); }
.author-box {
    margin-top: 36px;
    padding: 22px 24px;
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.author-box h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}
.author-box .name {
    margin: 0 0 6px;
    font-weight: 800;
    color: var(--ink);
}
.author-box .bio {
    margin: 0;
    font-size: 14.5px;
    color: var(--body);
}
.article-hero {
    margin: 0 0 24px;
}
.article-hero-img {
    display: block;
    width: 100%;
    border-radius: var(--radius-sm);
}
.page-hero--article {
    text-align: left;
}
.page-hero--article .article-wrap {
    margin: 0 auto;
}
@media (max-width: 900px) {
    .layout-with-toc {
        grid-template-columns: 1fr;
    }
    .toc-sidebar { display: none; }
}
    margin-top: 26px;
}
.article-back a {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--lav-deep);
}
.article-back a:hover { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; }
.faq details { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--ink); padding: 16px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--lav-deep); font-weight: 400; }
.faq details[open] summary::after { content: "-"; }
.faq details p { margin: 0 0 18px; color: var(--body); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: var(--grad-brand); border-radius: 30px; padding: 60px 32px; box-shadow: var(--shadow); }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 600; color: var(--ink); }
.cta-band p { margin: 14px auto 30px; max-width: 480px; color: #4a4266; font-size: 17px; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { padding: 52px 0 28px; margin-top: 20px; border-top: 1px solid var(--hairline); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
    gap: 32px 28px;
    align-items: start;
}
.footer-brand-col .brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; margin-bottom: 12px; }
.footer-brand-col p { margin: 0; max-width: 240px; color: var(--body); font-size: 14.5px; line-height: 1.5; }
.footer-col h4 {
    margin: 0 0 14px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--body); font-weight: 600; font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--lav-deep); }
.footer-alt-list {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 8px !important;
}
.footer-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between; }
.footer-inner .brand { font-size: 20px; }
.muted { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--body); font-weight: 600; font-size: 14px; }
.footer-links a:hover { color: var(--lav-deep); }
.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--hairline);
}
.copyright {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
}
.footer-disclaimer {
    margin: 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    opacity: 0.9;
}

/* ---------- Nav active ---------- */
.nav-links > a.active { color: var(--lav-deep); }

/* ---------- Subpage hero ---------- */
.page-hero { padding: 66px 0 26px; text-align: center; }
.page-hero .pill { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 600; letter-spacing: -0.5px; }
.page-hero p { max-width: 640px; margin: 18px auto 0; font-size: 18px; color: var(--body); }
.section-head-link { text-align: center; margin-top: 30px; }
.section-head-link a { font-family: var(--font-head); font-weight: 600; color: var(--lav-deep); }

/* ---------- Privacy differentiator band ---------- */
.feature-band {
    display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
    background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border);
    border-radius: 30px; padding: 46px; box-shadow: var(--shadow); margin-top: 20px;
}
.feature-band h2 { text-align: left; font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.feature-band .band-lead { color: var(--body); font-size: 17px; margin: 16px 0 0; }
.band-list { list-style: none; padding: 0; margin: 22px 0 0; }
.band-list li { position: relative; padding: 8px 0 8px 32px; font-weight: 600; color: var(--ink); font-size: 15px; }
.band-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--mint); color: #2f7d5c; font-size: 12px; font-weight: 800; display: grid; place-items: center; }

/* private vs pooled visual */
.pool-viz { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.viz-card { background: #fff; border-radius: 20px; padding: 20px 18px; box-shadow: var(--shadow-sm); text-align: center; }
.viz-card.us { border: 2px solid transparent; background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box; }
.viz-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
.viz-card .viz-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; display: block; }
.viz-dots { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.viz-dots span { width: 16px; height: 16px; border-radius: 6px; }
.viz-lock { font-size: 22px; margin-bottom: 6px; }
.d-pink { background: var(--pink); } .d-lav { background: var(--lav); } .d-mint { background: var(--mint); } .d-blue { background: var(--blue); } .d-amber { background: #ffd9a8; } .d-gray { background: #d9d6e2; }
.viz-card.us .viz-dots span { background: var(--lav); }

/* ---------- Price callout (vs competitors) ---------- */
.price-callout { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 46px; }
.price-chip { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 16px; text-align: center; box-shadow: var(--shadow-sm); }
.price-chip.us { background: var(--glass-strong); border: none; box-shadow: var(--shadow); position: relative; }
.price-chip.us::before { content: ""; position: absolute; inset: -2px; border-radius: calc(var(--radius-sm) + 2px); padding: 2px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-chip .name { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); }
.price-chip .amt { font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--ink); margin: 6px 0 2px; }
.price-chip.us .amt { color: var(--lav-deep); }
.price-chip .from { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }

/* ---------- Comparison table ---------- */
.compare-wrap { margin-top: 44px; overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; background: var(--glass-strong); }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; font-size: 14.5px; }
.compare-table thead th { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 15px; border-bottom: 1px solid var(--hairline); }
.compare-table thead th.col-us { background: var(--grad-brand); color: var(--ink); border-radius: 16px 16px 0 0; }
.compare-table th.row-label, .compare-table td.row-label { text-align: left; font-weight: 700; color: var(--ink); font-family: var(--font-body); }
.compare-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--hairline); }
.compare-table td.col-us { background: rgba(246, 182, 210, 0.12); font-weight: 700; color: var(--ink); }
.compare-table .tick { color: #2f9d72; font-weight: 800; font-size: 17px; }
.compare-table .cross { color: #c4b8cf; font-weight: 800; font-size: 16px; }
.compare-table .warn { color: #d09a4e; font-weight: 700; }
.compare-note { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 16px; }
.compare-table-duo { min-width: 520px; }

.pros-cons {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.pros-cons-col {
    background: var(--glass-strong);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}
.pros-cons-col h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
}
.pros-cons-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros-cons-col li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 15px;
    color: var(--body);
    border-bottom: 1px solid var(--hairline);
}
.pros-cons-col li:last-child { border-bottom: none; }
.pros-cons-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lav-deep);
}
.pros-cons-col:first-child li::before { background: var(--mint-deep); }
@media (max-width: 700px) {
    .pros-cons { grid-template-columns: 1fr; }
}
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--lav-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.alt-hub-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.alt-hub-card {
    display: flex; flex-direction: column; gap: 10px;
    background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px 22px; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
    transition: transform .16s ease, box-shadow .2s ease;
}
.alt-hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.alt-hub-kicker {
    font-size: 11px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; color: var(--lav-deep);
}
.alt-hub-card h3 { font-size: 20px; font-weight: 600; margin: 0; }
.alt-hub-card p { margin: 0; color: var(--body); font-size: 14.5px; flex: 1; }
.alt-hub-link { font-weight: 800; color: var(--lav-deep); font-size: 14px; }
.alt-fit-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.alt-chip-row {
    margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.alt-chip {
    display: inline-flex; align-items: center;
    padding: 10px 16px; border-radius: var(--radius-pill);
    background: var(--glass); border: 1px solid var(--border);
    color: var(--ink); font-weight: 700; font-size: 14px; text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.alt-chip:hover { color: var(--lav-deep); }

/* ---------- AI section ---------- */
.ai-band {
    margin-top: 20px; border-radius: 32px; padding: 56px 44px;
    background:
        radial-gradient(60% 80% at 12% 0%, rgba(195, 179, 236, 0.55), transparent 60%),
        radial-gradient(60% 80% at 100% 30%, rgba(169, 227, 204, 0.5), transparent 60%),
        radial-gradient(70% 90% at 60% 120%, rgba(246, 182, 210, 0.5), transparent 60%),
        rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.ai-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 500; font-size: 12px; letter-spacing: .4px; padding: 6px 14px; border-radius: 999px; }
.ai-tag .sparkle { font-size: 13px; }
.ai-band h2 { text-align: left; margin: 18px 0 0; font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; }
.ai-band .band-lead { text-align: left; margin: 14px 0 0; max-width: 620px; color: var(--body); font-size: 17px; }
.ai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 36px; }
.ai-card { background: rgba(255, 255, 255, 0.86); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); position: relative; }
.ai-card .ai-ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 20px; margin-bottom: 14px; background: var(--grad-icon); }
.ai-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.ai-card p { margin: 0; font-size: 14.5px; color: var(--body); }
.chip-soon { position: absolute; top: 16px; right: 16px; background: var(--glass); border: 1px solid var(--border); color: var(--lav-deep); font-family: var(--font-head); font-weight: 600; font-size: 10.5px; letter-spacing: .3px; padding: 3px 10px; border-radius: 999px; text-transform: uppercase; }
.ai-foot { margin-top: 30px; font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
}
@media (max-width: 900px) {
    .library-mock { grid-template-columns: 1fr; }
    .lib-sidebar { display: none; }
    .lib-grid { columns: 2; }
    .feature-band { grid-template-columns: 1fr; gap: 32px; padding: 34px; }
    .ai-band { padding: 40px 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .hero { padding: 64px 0 48px; }
    .hero h1 { font-size: clamp(30px, 8vw, 40px); }
    .hero-sub { font-size: 16px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .nav-links > a:not(.btn):not(:last-of-type) { display: none; }
    .nav-links > a.btn { font-size: 13px; padding: 8px 14px; }
    .lib-grid { columns: 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .pool-viz { grid-template-columns: 1fr; }
    .article-body { padding: 24px 20px; }
}
