/**
 * MARGN.PLUS — Homepage styles
 *
 * Enqueued on is_front_page() from functions.php. Fraunces is loaded via
 * preconnect + <link> in the document head (not @import) so it doesn't
 * render-block the first paint.
 *
 * Accessibility notes:
 *   - .home-cat-pill has visible :focus-visible outline for keyboard users
 *   - pills use aria-pressed in HTML (toggled in JS) to announce state to AT
 *   - animations respect prefers-reduced-motion
 */

/* ── Page-scoped wrapper ────────────────────────────────────── */
.home-page {
    position: relative;
    overflow-x: hidden;
    max-width: none !important;
    padding: 0 !important;
}

.home-page > section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Animated blobs (reused from dashboard) ────────────────── */
.home-blob-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px) saturate(130%);
    opacity: 0.35;
}
.home-blob-bg .blob {
    position: absolute;
    display: block;
    width: 620px; height: 620px;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
}
.home-blob-bg .blob--1 { background: radial-gradient(circle, var(--accent-purple) 0%, transparent 65%); top: -120px; left: -180px; animation: home-blob-bounce-1 52s linear infinite alternate; }
.home-blob-bg .blob--2 { background: radial-gradient(circle, var(--accent-pink)   0%, transparent 65%); top: 20%; right: -160px; animation: home-blob-bounce-2 60s linear infinite alternate; }
.home-blob-bg .blob--3 { background: radial-gradient(circle, var(--accent-teal)   0%, transparent 65%); bottom: -200px; left: 30%; animation: home-blob-bounce-3 68s linear infinite alternate; }
.home-blob-bg .blob--4 { background: radial-gradient(circle, var(--accent-yellow) 0%, transparent 65%); top: 55%; left: -120px; width: 480px; height: 480px; animation: home-blob-bounce-4 74s linear infinite alternate; }

@keyframes home-blob-bounce-1 {
    0%   { transform: translate(0,      0);    }
    25%  { transform: translate(55vw,   25vh); }
    50%  { transform: translate(80vw,  -10vh); }
    75%  { transform: translate(30vw,   55vh); }
    100% { transform: translate(65vw,   40vh); }
}
@keyframes home-blob-bounce-2 {
    0%   { transform: translate(0,      0);    }
    25%  { transform: translate(-55vw,  25vh); }
    50%  { transform: translate(-75vw, -30vh); }
    75%  { transform: translate(-25vw,  50vh); }
    100% { transform: translate(-65vw,  10vh); }
}
@keyframes home-blob-bounce-3 {
    0%   { transform: translate(0,      0);    }
    25%  { transform: translate(30vw,  -50vh); }
    50%  { transform: translate(-35vw, -65vh); }
    75%  { transform: translate(50vw,  -25vh); }
    100% { transform: translate(-20vw, -60vh); }
}
@keyframes home-blob-bounce-4 {
    0%   { transform: translate(0,      0);    }
    25%  { transform: translate(60vw,   35vh); }
    50%  { transform: translate(35vw,  -25vh); }
    75%  { transform: translate(80vw,   50vh); }
    100% { transform: translate(65vw,  -15vh); }
}
@media (prefers-reduced-motion: reduce) {
    .home-blob-bg .blob { animation: none; }
    .home-preview-chart .bar { animation: none !important; }
    .home-ba .arrow { animation: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.home-hero {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    text-align: center;
}
.home-hero h1 {
    font-family: 'Fraunces', 'Inter', serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.home-hero h1 .accent {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.home-hero .subhead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 2.5rem;
    line-height: 1.55;
}
.home-cta-group {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.home-cta-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 24px rgba(159,93,230,0.35);
}
.home-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159,93,230,0.5);
    color: #fff;
}
.home-cta-primary:focus-visible,
.home-cta-secondary:focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 3px;
}
.home-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.9rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.18s ease;
}
.home-cta-secondary:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}
.home-hero-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.home-hero-note .dot { margin: 0 0.5rem; color: var(--border); }

/* ── HERO DASHBOARD PREVIEW MOCKUP ──────────────────────────── */
.home-preview-frame {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-card), var(--bg-card-alt));
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(159,93,230,0.15);
    position: relative;
}
.home-preview-bar {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}
.home-preview-bar span {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(176,164,192,0.25);
}
.home-preview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.home-preview-stat {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
}
.home-preview-stat .val {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
}
.home-preview-stat:nth-child(1) .val { color: var(--accent-teal);   }
.home-preview-stat:nth-child(2) .val { color: var(--accent-purple); }
.home-preview-stat:nth-child(3) .val { color: var(--accent-yellow); }
.home-preview-stat:nth-child(4) .val { color: var(--accent-pink);   }
.home-preview-stat .lab {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}
.home-preview-chart {
    height: 180px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
}
.home-preview-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-purple));
    border-radius: 4px 4px 0 0;
    animation: hero-bar-grow 1.4s ease-out both;
}
.home-preview-chart .bar:nth-child(1)  { height: 32%; animation-delay: 0.05s; }
.home-preview-chart .bar:nth-child(2)  { height: 48%; animation-delay: 0.10s; }
.home-preview-chart .bar:nth-child(3)  { height: 28%; animation-delay: 0.15s; }
.home-preview-chart .bar:nth-child(4)  { height: 72%; animation-delay: 0.20s; }
.home-preview-chart .bar:nth-child(5)  { height: 55%; animation-delay: 0.25s; }
.home-preview-chart .bar:nth-child(6)  { height: 88%; animation-delay: 0.30s; }
.home-preview-chart .bar:nth-child(7)  { height: 40%; animation-delay: 0.35s; }
.home-preview-chart .bar:nth-child(8)  { height: 62%; animation-delay: 0.40s; }
.home-preview-chart .bar:nth-child(9)  { height: 35%; animation-delay: 0.45s; }
.home-preview-chart .bar:nth-child(10) { height: 78%; animation-delay: 0.50s; }
.home-preview-chart .bar:nth-child(11) { height: 45%; animation-delay: 0.55s; }
.home-preview-chart .bar:nth-child(12) { height: 92%; animation-delay: 0.60s; }
@keyframes hero-bar-grow {
    from { height: 0; opacity: 0; }
    to   { opacity: 1; }
}

/* ── 3-STEP PROCESS ─────────────────────────────────────────── */
.home-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}
.home-step {
    background: rgba(26,26,46,0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    backdrop-filter: blur(8px);
}
.home-step-n {
    display: inline-block;
    width: 32px; height: 32px; line-height: 32px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.home-step h2,
.home-step h4 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
}
/* Scoped overrides so the step-title h2 inherits the smaller heading look
 * instead of the page-wide h2 size — the heading level is h2 only for the
 * a11y outline (no level-skip from h1), not for visual hierarchy. */
.home-step .home-step-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.home-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ── SOCIAL PROOF STRIP ────────────────────────────────────── */
.home-proof {
    text-align: center;
    padding: 60px 24px !important;
}
.home-proof h2 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
}
.home-proof-subhead {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
}
.home-proof-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.home-proof-row span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.home-proof-row strong {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.1;
}

/* ── BEFORE / AFTER ────────────────────────────────────────── */
.home-ba {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}
.home-ba .panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 280px;
}
.home-ba .panel.before {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: pre;
    overflow: hidden;
    line-height: 1.5;
    opacity: 0.75;
}
.home-ba .panel.after h5 { color: var(--accent-pink); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.home-ba .arrow {
    font-size: 2rem;
    color: var(--accent-purple);
    animation: arrow-pulse 2s ease-in-out infinite;
}
@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(6px); }
}
.home-ba h2, .home-features h2, .home-pricing h2, .home-faq h2 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.home-ba-subhead, .home-pricing-subhead, .home-features-subhead {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 3rem;
}

/* ── FEATURE BENTO ─────────────────────────────────────────── */
.home-features .bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1rem;
}
.bento-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-alt));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.bento-card:hover { border-color: var(--accent-pink); transform: translateY(-3px); }
.bento-card .emoji { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
/* v1.26.0: Lucide icons replacing bento emoji. Pink stroke, clean scale. */
.bento-card .lucide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-pink);
}
.bento-card .lucide-icon svg { width: 100%; height: 100%; }
.lucide-inline {
    display: inline-flex;
    align-items: center;
    width: 1rem;
    height: 1rem;
    vertical-align: -2px;
}
.lucide-inline svg { width: 100%; height: 100%; }
.bento-card h3,
.bento-card h4 { font-size: 1.15rem; margin-bottom: 0.35rem; line-height: 1.25; font-weight: 700; }

/* Decorative eyebrow label on the dashboard-preview mock — previously an
 * <h5>, now a plain <div> so Lighthouse doesn't flag it as a skipped
 * heading level. Kept the same type styling so visual parity holds. */
.panel-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.bento-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
.bento-1 { grid-column: span 2; grid-row: span 2; }
.bento-2 { grid-column: span 4; }
.bento-3 { grid-column: span 2; }
.bento-4 { grid-column: span 2; }
.bento-5 { grid-column: span 3; }
.bento-6 { grid-column: span 3; }
@media (max-width: 900px) {
    .home-features .bento { grid-template-columns: repeat(2, 1fr); }
    .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 {
        grid-column: span 2; grid-row: auto;
    }
}

/* ── CATEGORY STRIP ────────────────────────────────────────── */
.home-cats {
    text-align: center;
    padding: 60px 24px !important;
}
.home-cats h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.home-cat-pills {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.home-cat-pill {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-primary);
    background: var(--bg-card);
    transition: all 0.18s ease;
    cursor: pointer;
}
.home-cat-pill:hover {
    border-color: var(--accent-pink);
    background: rgba(244,114,182,0.1);
    transform: translateY(-2px);
}
/* Keyboard focus — visible ring independent of hover. Uses accent-yellow so
 * it contrasts against both the dark bg and against the active-pill gradient. */
.home-cat-pill:focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 3px;
}
.home-cat-pill[aria-pressed="true"],
.home-cat-pill.active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    border-color: transparent;
}

/* ── Category Theme Overrides ──────────────────────────────── */
/* Each data-theme on body swaps the four accent color variables; everything
 * downstream (hero gradient, blob bg, buttons, pills) picks it up automatically. */

body[data-theme="mens-fashion"] {
    --accent-purple: #3b4cca;
    --accent-pink:   #64748b;
    --accent-teal:   #06b6d4;
    --accent-yellow: #d97706;
}
body[data-theme="sneakers-streetwear"] {
    --accent-purple: #ea580c;
    --accent-pink:   #f97316;
    --accent-teal:   #84cc16;
    --accent-yellow: #fde047;
}
body[data-theme="luxury-designer"] {
    --accent-purple: #92400e;
    --accent-pink:   #d97706;
    --accent-teal:   #a8a29e;
    --accent-yellow: #fbbf24;
}
body[data-theme="beauty"] {
    --accent-purple: #ec4899;
    --accent-pink:   #fb7185;
    --accent-teal:   #fda4af;
    --accent-yellow: #fde68a;
}
body[data-theme="sports-cards"] {
    --accent-purple: #1d4ed8;
    --accent-pink:   #dc2626;
    --accent-teal:   #f1f5f9;
    --accent-yellow: #2563eb;
}
body[data-theme="trading-cards"] {
    --accent-purple: #1f2937;
    --accent-pink:   #eab308;
    --accent-teal:   #0284c7;
    --accent-yellow: #fde047;
}
body[data-theme="funko-collectibles"] {
    --accent-purple: #a855f7;
    --accent-pink:   #ec4899;
    --accent-teal:   #22d3ee;
    --accent-yellow: #facc15;
}
body[data-theme="comics"] {
    --accent-purple: #dc2626;
    --accent-pink:   #fbbf24;
    --accent-teal:   #3b82f6;
    --accent-yellow: #fde047;
}
body[data-theme="toys-hobbies"] {
    --accent-purple: #8b5cf6;
    --accent-pink:   #f97316;
    --accent-teal:   #10b981;
    --accent-yellow: #fde047;
}
body[data-theme="coins-currency"] {
    --accent-purple: #a16207;
    --accent-pink:   #ca8a04;
    --accent-teal:   #65a30d;
    --accent-yellow: #fbbf24;
}
body[data-theme="vintage"] {
    --accent-purple: #9a3412;
    --accent-pink:   #c2410c;
    --accent-teal:   #a16207;
    --accent-yellow: #fef3c7;
}

/* Smooth transitions so color swaps feel deliberate, not jarring */
body { transition: background-color 0.4s ease; }
.home-page .blob,
.home-hero h1 .accent,
.home-cta-primary,
.home-preview-stat .val,
.home-cat-pill,
.home-faq-item summary::after {
    transition: all 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
    body,
    .home-page .blob,
    .home-hero h1 .accent,
    .home-cta-primary,
    .home-preview-stat .val,
    .home-cat-pill,
    .home-faq-item summary::after {
        transition: none !important;
    }
}

/* ── PRICING ───────────────────────────────────────────────── */
.home-pricing .plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.home-pricing .plans-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 1rem;
}
/* v1.25.4: Team/Agency merged into a single Team tier with bumped seat
 * cap; pricing is a 3-column layout on desktop. */
.home-pricing .plans-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1020px;
    gap: 1.25rem;
}
@media (max-width: 1100px) {
    .home-pricing .plans-4 { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
    .home-pricing .plans-3 { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
}
@media (max-width: 640px) {
    .home-pricing .plans-3 { grid-template-columns: 1fr; max-width: 420px; }
}
/* Agency Plus — power-user card below the main pricing grid */
.home-plan-plus {
    margin: 2.5rem auto 0;
    max-width: 1000px;
}
.home-plan-plus-inner {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-alt));
    border: 1px solid var(--accent-purple);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 0 40px rgba(159,93,230,0.15);
}
.home-plan {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    position: relative;
}
.home-plan.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 0 40px rgba(159,93,230,0.2);
}
.home-plan.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.home-plan h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.home-plan .price { font-size: 2.5rem; font-weight: 800; line-height: 1.1; }
.home-plan .price .period { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.home-plan ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.home-plan li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.home-plan li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: 700;
    flex-shrink: 0;
}
.home-plan .plan-cta {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease;
}
.home-plan.featured .plan-cta {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
}
.home-plan:not(.featured) .plan-cta {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}
.home-plan .plan-cta:hover { transform: translateY(-2px); color: #fff; }
.home-plan .plan-cta:focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .home-pricing .plans { grid-template-columns: 1fr; }
    .home-ba { grid-template-columns: 1fr; }
    .home-ba .arrow { transform: rotate(90deg); margin: 0 auto; }
    .home-steps { grid-template-columns: 1fr; }
    .home-preview-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.home-faq-list { max-width: 760px; margin: 0 auto; }
.home-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 1rem 1.25rem;
}
.home-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-faq-item summary:focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 4px;
    border-radius: 4px;
}
.home-faq-item summary::after {
    content: '+';
    color: var(--accent-pink);
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}
.home-faq-item[open] summary::after { transform: rotate(45deg); }
.home-faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0.75rem 0 0;
    line-height: 1.55;
}

/* ── TRUST / PRIVACY (v1.28.33) ───────────────────────────── */
.home-trust {
    max-width: 1080px;
    margin: 0 auto;
    padding: 96px 24px 32px;
    text-align: center;
}
.home-trust h2 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.home-trust-lead {
    font-size: 1.25rem;
    color: var(--text-secondary, #b9b3c6);
    margin: 0 0 40px;
    font-weight: 500;
}
.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 32px;
}
.home-trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 93, 230, 0.18);
    border-radius: 14px;
    padding: 22px 22px 20px;
}
.home-trust-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #f0e8f8;
}
.home-trust-card p {
    color: var(--text-secondary, #b9b3c6);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}
.home-trust-card a {
    color: #c084fc;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.home-trust-foot {
    color: var(--text-secondary, #b9b3c6);
    font-size: 0.95rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}
.home-trust-foot a {
    color: #c084fc;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── FINAL CTA ─────────────────────────────────────────────── */
.home-final-cta {
    text-align: center;
    padding: 100px 24px !important;
}
.home-final-cta h2 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.home-final-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
