/**
 * Shared design system for therapair.com.au marketing pages.
 * Modern UX/UI: accessibility (focus, touch targets), reduced motion, readability.
 */
:root {
    --therapair-primary-blue: #6C5CE7;
    --therapair-light-blue: #818CF8;
    --therapair-lighter-blue: #A78BFA;
    --therapair-primary-hover: #5B4BD6;
    --therapair-primary-dark: #4C3EC5;
    --therapair-black: #1A1533;
    --therapair-warm-beige: #F6F5FF;
    --therapair-dark-grey: #7C7494;
    --therapair-primary: var(--therapair-primary-blue);
    --therapair-secondary: var(--therapair-light-blue);
    --therapair-accent: var(--therapair-lighter-blue);
    --therapair-background: var(--therapair-warm-beige);
    --therapair-surface: #ffffff;
    --therapair-charcoal: var(--therapair-black);
    --therapair-gray: var(--therapair-dark-grey);
    --therapair-success: #10B981;
    --therapair-gradient-start: var(--therapair-lighter-blue);
    --therapair-gradient-end: var(--therapair-primary-blue);
    /* UX: focus ring for keyboard/screen-reader users (WCAG 2.4.7) */
    --focus-ring: 2px solid var(--therapair-primary);
    --focus-offset: 2px;
    /* Readability: comfortable line length */
    --content-max-width: 65ch;
}

html {
    scroll-behavior: smooth;
    /* In-page anchors clear fixed header + notch (WCAG 2.4.1) */
    scroll-padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
@media (min-width: 641px) {
    html {
        scroll-padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
    }
}

/* Fixed marketing header: keep page content below the bar (not hidden under it) */
:root {
    /* Bar = logo row + safe area; matches drawer top offset (~3.85rem) + small buffer */
    --marketing-header-offset: calc(4.5rem + env(safe-area-inset-top, 0px));
}
@media (min-width: 641px) {
    :root {
        --marketing-header-offset: calc(4.65rem + env(safe-area-inset-top, 0px));
    }
}
body:has(> header.floating-header) {
    padding-top: var(--marketing-header-offset);
}

/* Sticky sidebars (legal TOC, etc.) sit below the fixed marketing header */
.sticky-under-header {
    position: sticky;
    align-self: flex-start;
    top: calc(var(--marketing-header-offset) + 1rem);
    z-index: 10;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
/* Media never overflows viewport on small screens */
img,
video,
canvas {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--therapair-background);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(108, 92, 231, 0.07), transparent 42%),
        radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.06), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(167, 139, 250, 0.05), transparent 48%);
    color: var(--therapair-charcoal);
    line-height: 1.6;
}

/* Flat utility pages (legal, contact, docs) keep neutral gray; marketing pages omit this class */
body.bg-gray-50 {
    background-color: #f9fafb;
    background-image: none;
}
h1, h2, h3, h4, h5, h6 { font-weight: 600; }

/* Critical layout/typography fallbacks when Tailwind CDN is blocked or fails */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pt-0 { padding-top: 0; }
.mt-0 { margin-top: 0; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.min-h-\[140px\] { min-height: 140px; }
.pb-4 { padding-bottom: 1rem; }
.border-b { border-bottom-width: 1px; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-bottom: 4rem; padding-top: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.hidden { display: none; }
.rounded-xl { border-radius: 0.75rem; }
.inline-block { display: inline-block; }
.w-full { width: 100%; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.grid { display: grid; }
.min-h-hero { min-height: 60vh; }
/* Header nav: same look when Tailwind unavailable */
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/90:hover { color: #fff; }
.hover\:text-white:hover { color: #fff; }
@media (min-width: 640px) {
    .sm\:text-5xl { font-size: 3rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-3xl { font-size: 1.875rem; }
    .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm\:w-auto { width: auto; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
}
@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
    .sm\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:flex-row { flex-direction: row; }
    .md\:items-start { align-items: flex-start; }
    .md\:justify-between { justify-content: space-between; }
    .md\:gap-8 { gap: 2rem; }
    .md\:self-auto { align-self: flex-start; }
}
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.border-t { border-top-width: 1px; }
.border-gray-800 { border-color: #1f2937; }
.pt-8 { padding-top: 2rem; }
.pb-24 { padding-bottom: 6rem; }
.transition { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.text-gray-400 { color: #9ca3af; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.self-center { align-self: center; }
.min-h-\[48px\] { min-height: 48px; }
.min-h-\[52px\] { min-height: 52px; }
.min-h-\[120px\] { min-height: 120px; }
.grid-cols-1 { grid-template-columns: 1fr; }
.bg-violet-900\/20 { background-color: rgba(76, 29, 149, 0.2); }
.text-violet-300 { color: #c4b5fd; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.hero-gradient {
    background: linear-gradient(135deg, var(--therapair-background) 0%, rgba(167, 139, 250, 0.15) 50%, rgba(129, 140, 248, 0.2) 100%);
}

/* Section layout (match homepage) */
.section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.section-inner {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.section-inner--wide {
    max-width: 42rem;
}
.section-title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.list-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.list-steps li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--therapair-gray);
}
.list-steps li span:first-child {
    color: var(--therapair-primary);
    font-weight: 600;
}
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(108, 92, 231, 0.12); }
.faq-item:last-child { border-bottom: none; }
.faq-item dt { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.faq-item dd { font-size: 0.875rem; color: var(--therapair-gray); margin: 0; }
.bg-alt { background: linear-gradient(135deg, rgba(108, 92, 231, 0.03) 0%, var(--therapair-background) 100%); }

.btn-primary {
    background: linear-gradient(135deg, var(--therapair-gradient-start), var(--therapair-gradient-end));
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(108, 92, 231, 0.3);
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, var(--therapair-primary-blue), var(--therapair-primary-hover));
    color: white;
}
.btn-primary:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.input-field {
    background: var(--therapair-surface);
    border: 2px solid rgba(108, 92, 231, 0.2);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    width: 100%;
}
.input-field:focus,
.input-field:focus-visible {
    outline: none;
    border-color: var(--therapair-primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}
.input-field:focus-visible {
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.25);
}

.feature-card {
    background: var(--therapair-surface);
    border-radius: 18px;
    padding: clamp(1.25rem, 3.5vw, 2rem);
    min-height: 0;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.14);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 1024px) {
    .feature-card {
        padding: 1.75rem 1.85rem;
        min-height: 9.5rem;
        display: flex;
        flex-direction: column;
    }
}
.feature-card h3 {
    line-height: 1.35;
}
.feature-card p:last-child {
    margin-bottom: 0;
}

.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;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--therapair-primary);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 1rem;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Reduced motion: respect user preference (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
    .btn-primary,
    .btn-primary:hover,
    .floating-header-cta,
    .card-hover,
    .feature-card,
    .floating-header,
    .floating-header-menu-toggle,
    .floating-header-nav--drawer,
    .floating-header-backdrop {
        transition: none;
    }
    .btn-primary:hover,
    .card-hover:hover {
        transform: none;
    }
}

/*
 * Sticky marketing header.
 * Desktop: inline nav + CTA.
 * Mobile/tablet (<900px): hamburger + right drawer (links + CTA).
 *
 * Drawer + backdrop MUST be siblings AFTER <header>, not inside it: backdrop-filter on the
 * bar creates a containing block; fixed descendants inside the header would clip to the bar height.
 * Open state: body.site-nav-open (see mobile-nav.js).
 */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10050; /* above feedback widget (10000) */
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
    padding-bottom: 12px;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
}

.floating-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 0;
}

.floating-header-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.floating-header-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(108, 92, 231, 0.24);
    border-radius: 12px;
    background: #ffffff;
    color: var(--therapair-charcoal);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.floating-header-menu-toggle:hover {
    background: rgba(108, 92, 231, 0.08);
}
.floating-header-menu-toggle:focus-visible {
    outline: 2px solid var(--therapair-primary);
    outline-offset: 2px;
}
.floating-header-menu-toggle svg {
    width: 20px;
    height: 20px;
}
/* Same button toggles icon: hamburger ↔ X when drawer open */
.floating-header-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-header-menu-icon--close {
    display: none;
}
body.site-nav-open .floating-header-menu-toggle .floating-header-menu-icon--bars {
    display: none;
}
body.site-nav-open .floating-header-menu-toggle .floating-header-menu-icon--close {
    display: flex;
}

/* Multi-line headlines: reduce widows (balance + pretty where supported) */
.headline-balanced {
    text-wrap: balance;
}
@supports (text-wrap: pretty) {
    .headline-balanced {
        text-wrap: pretty;
    }
}

.floating-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.floating-header-cta {
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 24px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--therapair-primary);
    color: #ffffff;
    border: 1px solid var(--therapair-primary);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}
.floating-header-cta:hover {
    background: var(--therapair-primary-dark);
    color: #ffffff;
}
.floating-header-cta:focus-visible,
.floating-header-nav-link:focus-visible {
    outline: 2px solid var(--therapair-primary);
    outline-offset: 2px;
}
.floating-header-nav-link {
    color: var(--therapair-charcoal);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.floating-header-nav-link:hover {
    color: var(--therapair-primary);
    background: rgba(108, 92, 231, 0.08);
}
.floating-header-nav-link[aria-current="page"] {
    color: var(--therapair-primary);
    background: rgba(108, 92, 231, 0.12);
    font-weight: 600;
}

.floating-header-backdrop {
    display: none;
}

@media (max-width: 899px) {
    .floating-header-content {
        gap: 12px;
    }
    .floating-header-nav--desktop {
        display: none;
    }
    .floating-header-menu-toggle {
        display: inline-flex;
    }
    .floating-header-nav--drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(360px, calc(100vw - 24px));
        background: #ffffff;
        border-left: 1px solid rgba(108, 92, 231, 0.15);
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.16);
        z-index: 10070;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: calc(1rem + env(safe-area-inset-top, 0px)) 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
        transform: translateX(104%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    body.site-nav-open .floating-header-nav--drawer {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .floating-header-nav--drawer .floating-header-nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 0.9rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }
    .floating-header-nav--drawer .floating-header-cta {
        width: 100%;
        margin-top: 0.5rem;
        min-height: 48px;
    }
    .floating-header-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.36);
        z-index: 10060;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }
    body.site-nav-open .floating-header-backdrop {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (min-width: 900px) {
    .floating-header-nav--drawer {
        display: none;
    }
    .floating-header-backdrop {
        display: none !important;
        pointer-events: none;
    }
}

@media (max-width: 640px) {
    .floating-header {
        padding-top: calc(10px + env(safe-area-inset-top, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
        padding-bottom: 10px;
        padding-left: max(16px, env(safe-area-inset-left, 0px));
    }
    .floating-header-logo { height: 32px; max-width: 150px; }
}

body.site-nav-open,
html.site-nav-open {
    overflow: hidden;
}

/* Legacy simple header (kept for reference; prefer .floating-header) */
.site-header {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(108, 92, 231, 0.15);
    padding: 1rem 1.5rem;
}
.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.site-header-logo { height: 40px; width: auto; max-width: 200px; }
@media (max-width: 640px) {
    .site-header-logo { height: 32px; max-width: 150px; }
}

/* Full footer (same structure as homepage) */
.site-footer {
    background: #111827;
    color: #d1d5db;
    margin-top: 5rem;
}
.site-footer-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem max(1.5rem, env(safe-area-inset-right, 0px)) 3rem max(1.5rem, env(safe-area-inset-left, 0px));
}
.site-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .site-footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.site-footer h3,
.site-footer h4 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
}
.site-footer h3 { font-weight: 600; }
.site-footer p,
.site-footer ul {
    font-size: 0.875rem;
    margin: 0 0 0.5rem 0;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a {
    color: #9ca3af;
    transition: color 0.2s;
}
.site-footer a:hover { color: #fff; }
.site-footer .text-gray-400 { color: #9ca3af; }
.site-footer .text-gray-500 { color: #6b7280; }
.site-footer .text-xs { font-size: 0.75rem; }

/* Hero <h1>: larger than section <h2>; gradient text (sandbox demo pattern); line breaks avoid lone last words where supported */
.marketing-page-hero-h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.75rem;
    color: var(--therapair-charcoal);
    text-wrap: balance;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .marketing-page-hero-h1 {
        background: linear-gradient(
            135deg,
            var(--therapair-primary-blue) 0%,
            var(--therapair-light-blue) 45%,
            var(--therapair-lighter-blue) 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}
@supports (text-wrap: pretty) {
    .marketing-page-hero-h1 {
        text-wrap: pretty;
    }
}
@media (min-width: 640px) {
    .marketing-page-hero-h1 {
        font-size: 3.5rem;
        line-height: 1.1;
    }
}
@media (min-width: 1024px) {
    .marketing-page-hero-h1 {
        font-size: 3.75rem;
        line-height: 1.08;
    }
}
@media print {
    .marketing-page-hero-h1 {
        background: none;
        -webkit-text-fill-color: var(--therapair-charcoal);
        color: var(--therapair-charcoal);
    }
}

.site-footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px)); /* widget + home indicator */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .site-footer-bottom {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}
.site-footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}
@media (min-width: 768px) {
    .site-footer-bottom-row {
        flex-direction: row;
        align-items: flex-start;
        width: auto;
        gap: 2rem;
    }
}
.site-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(108, 92, 231, 0.2);
    color: #c4b5fd;
    font-size: 0.875rem;
    font-weight: 500;
}
.site-footer-links-inline {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}
.site-footer-links-inline a { color: #9ca3af; }
.site-footer-links-inline a:hover { color: #fff; }
