        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --sage: #5B7B5E;
            --sage-light: #7A9A7D;
            --sage-pale: #E8F0E4;
            --cream: #FDF8F0;
            --warm-white: #FEFCF8;
            --bark: #3D2E1E;
            --bark-light: #5C4A36;
            --stone: #8B8178;
            --gold: #C4993B;
            --gold-pale: #F5EDD8;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--bark);
            background: var(--warm-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* NAV — scoped to .main-nav so footer nav is not affected */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 200;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--warm-white);
            border-bottom: 1px solid rgba(91, 123, 94, 0.12);
        }

        /* TOPIC NAV — shortcut links below main nav */
        .topic-nav {
            position: fixed;
            top: 56px; /* sits below main-nav */
            left: 0;
            width: 100%;
            z-index: 199;
            background: var(--cream);
            border-bottom: 1px solid rgba(91, 123, 94, 0.12);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.25rem;
            padding: 0.45rem 1rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .topic-nav::-webkit-scrollbar { display: none; }
        .topic-nav a {
            white-space: nowrap;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--bark-light);
            text-decoration: none;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            transition: background 0.15s, color 0.15s;
            flex-shrink: 0;
        }
        .topic-nav a:hover {
            background: var(--sage-pale);
            color: var(--sage);
        }

        /* Footer nav — crawlability links, never fixed */
        .footer-nav {
            position: static;
            margin: 1.5rem 0;
            text-align: center;
            font-size: 0.95rem;
            line-height: 2.2;
            padding: 0;
            background: none;
            border: none;
            display: block;
            width: auto;
            z-index: auto;
        }
        .footer-nav a {
            margin: 0 0.75rem;
            color: var(--stone);
            text-decoration: none;
        }
        .footer-nav a:first-child,
        .footer-nav a[href="/pricing"],
        .footer-nav a[href="/our-story"],
        .footer-nav a[href="/contact"] {
            color: var(--sage);
        }
        .footer-nav a:hover {
            text-decoration: underline;
        }

        .logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.5rem;
            color: var(--sage);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .logo span {
            color: var(--gold);
        }

        /* NAV RIGHT — install btn + hamburger */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* Standalone install button (always visible) */
        .nav-install-btn {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            background: var(--sage);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            padding: 0.6rem 1.1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            white-space: nowrap;
            min-height: 44px;
        }
        .nav-install-btn:hover {
            background: var(--sage-light);
            transform: translateY(-1px);
        }
        .nav-install-btn.hidden { display: none; }

        /* Hamburger button */
        .hamburger-btn {
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger-btn:hover { background: var(--sage-pale); }
        .hamburger-btn span {
            display: block;
            width: 22px;
            height: 2.5px;
            background: var(--bark);
            border-radius: 2px;
            transition: transform 0.25s, opacity 0.2s;
        }
        .hamburger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        /* Hamburger dropdown menu */
        .hamburger-menu {
            position: fixed;
            top: 92px; /* below main-nav (56) + topic-nav (~36) */
            right: 1rem;
            background: white;
            border: 1.5px solid rgba(91, 123, 94, 0.12);
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(61, 46, 30, 0.13);
            min-width: 220px;
            z-index: 300;
            display: none;
            flex-direction: column;
            padding: 0.5rem;
            animation: menu-fade-in 0.18s ease;
        }
        .hamburger-menu.open { display: flex; }
        @keyframes menu-fade-in {
            from { opacity: 0; transform: translateY(-8px) scale(0.97); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }
        .hamburger-menu a,
        .hamburger-menu button.menu-item {
            display: block;
            width: 100%;
            text-align: left;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--bark);
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            border: none;
            background: none;
            cursor: pointer;
            transition: background 0.15s, color 0.15s;
            line-height: 1.3;
        }
        .hamburger-menu a:hover,
        .hamburger-menu button.menu-item:hover {
            background: var(--sage-pale);
            color: var(--sage);
        }
        .hamburger-menu .menu-divider {
            height: 1px;
            background: rgba(91, 123, 94, 0.1);
            margin: 0.3rem 0.5rem;
        }
        .hamburger-menu .menu-install-btn {
            background: var(--sage);
            color: white;
            text-align: center;
            margin-top: 0.25rem;
            padding: 0.85rem 1rem;
            font-size: 1.05rem;
        }
        .hamburger-menu .menu-install-btn:hover {
            background: var(--sage-light);
            color: white;
        }
        .hamburger-menu .menu-install-btn.hidden { display: none; }

        /* Hero header on /ask */
        .ask-hero {
            text-align: center;
            margin-bottom: 1rem;
            padding: 0.75rem 0 0;
        }
        .ask-hero-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--bark);
            line-height: 1.2;
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
        }
        .ask-hero-title em {
            color: var(--gold);
            font-style: normal;
        }
        .ask-hero-sub {
            font-size: 1.2rem;
            color: var(--stone);
            font-weight: 400;
            line-height: 1.6;
        }
        @media (max-width: 640px) {
            .ask-hero-title { font-size: 1.5rem; }
            .ask-hero-sub { font-size: 1rem; }
        }

        /* MAIN LAYOUT */
        .main {
            max-width: 800px;
            margin: 0 auto;
            padding: 7rem 1.5rem 2rem; /* extra top padding for fixed nav + topic nav */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* HEADER */
        .page-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* Instructional Visual */
        .instruction-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 0 auto 1.75rem;
            max-width: 500px;
            padding: 1.1rem 1.5rem;
            background: var(--cream);
            border: 1.5px solid rgba(91, 123, 94, 0.1);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .instruction-visual::before {
            content: '';
            position: absolute;
            top: -18px;
            right: -18px;
            width: 72px;
            height: 72px;
            background: var(--sage-pale);
            border-radius: 50%;
            z-index: 0;
        }

        .instr-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            z-index: 1;
            flex: 1;
        }

        .instr-icon {
            width: 44px;
            height: 44px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(61, 46, 30, 0.08);
            font-size: 1.2rem;
        }

        .instr-label {
            font-size: 1rem;
            color: var(--bark-light);
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
        }

        .instr-arrow {
            font-size: 1rem;
            color: var(--sage-light);
            z-index: 1;
            flex-shrink: 0;
            opacity: 0.7;
        }

        @media (max-width: 480px) {
            .instruction-visual {
                gap: 0.4rem;
                padding: 0.6rem 0.5rem;
                margin-bottom: 1rem;
            }
            .instr-icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            .instr-label {
                font-size: 0.85rem;
            }
        }

        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.1rem, 4.5vw, 2.9rem);
            color: var(--bark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .page-header h1 em {
            color: var(--sage);
            font-style: normal;
        }

        .page-header p {
            font-size: 1.35rem;
            color: var(--stone);
        }

        /* INPUT AREA */
        .ask-box {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 2px 24px rgba(61, 46, 30, 0.06);
            border: 2px solid var(--sage-pale);
            margin-bottom: 1.5rem;
            transition: border-color 0.3s;
        }

        .ask-box:focus-within {
            border-color: var(--sage);
        }

        .ask-box textarea {
            width: 100%;
            min-height: 100px;
            border: none;
            outline: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            color: var(--bark);
            line-height: 1.6;
            resize: vertical;
            background: transparent;
        }

        .ask-box textarea::placeholder {
            color: var(--stone);
            opacity: 0.7;
        }

        /* Mic button — inside ask textarea */
        .ask-box {
            position: relative;
        }
        .ask-box textarea {
            padding-right: 3.5rem;
        }
        .mic-btn {
            position: absolute;
            right: 0.75rem;
            bottom: 0.75rem;
            width: 48px;
            height: 48px;
            background: var(--sage-pale);
            border: 2px solid var(--sage-pale);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }
        .mic-btn:hover {
            background: var(--sage);
            border-color: var(--sage);
            transform: scale(1.08);
        }
        .mic-btn:hover svg path {
            fill: white;
        }
        .mic-btn svg path {
            fill: var(--sage);
            transition: fill 0.2s;
        }
        .mic-btn.listening {
            background: #C53030;
            border-color: #C53030;
            animation: mic-pulse 1.2s ease-in-out infinite;
        }
        .mic-btn.listening svg path {
            fill: white;
        }
        @keyframes mic-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(197, 48, 48, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(197, 48, 48, 0); }
        }
        .mic-hint {
            position: absolute;
            right: 0.75rem;
            bottom: calc(0.75rem + 48px + 0.5rem);
            background: var(--bark);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            white-space: nowrap;
            display: none;
            align-items: center;
            gap: 0.35rem;
        }
        .mic-hint::after {
            content: '';
            position: absolute;
            right: 1.1rem;
            bottom: -4px;
            width: 8px;
            height: 8px;
            background: var(--bark);
            transform: rotate(45deg);
        }

        .ask-actions {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(91, 123, 94, 0.08);
        }

        .ask-actions-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .char-count {
            font-size: 1rem;
            color: var(--stone);
            white-space: nowrap;
        }

        .btn-ask {
            background: var(--sage);
            color: white;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
        }

        .btn-ask:hover:not(:disabled) {
            background: var(--sage-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(91, 123, 94, 0.3);
        }

        .btn-ask:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* COMMON QUESTIONS */
        .common-section {
            margin-bottom: 2rem;
        }

        .common-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--stone);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .common-label::before {
            content: '';
            width: 16px;
            height: 2px;
            background: var(--sage);
            border-radius: 2px;
        }

        .common-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .common-btn {
            background: var(--cream);
            border: 1px solid rgba(91, 123, 94, 0.08);
            border-radius: 14px;
            padding: 1rem 1.25rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            color: var(--bark-light);
            cursor: pointer;
            text-align: left;
            transition: all 0.25s;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            line-height: 1.4;
        }

        .common-btn:hover {
            background: var(--sage-pale);
            border-color: var(--sage-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(61, 46, 30, 0.04);
        }

        .common-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        /* ANSWER AREA */
        .answer-area {
            display: none;
            margin-bottom: 2rem;
        }

        .answer-area.visible {
            display: block;
        }

        /* ── Upgrade / Conversion Panel (below answer) ── */
        .upgrade-panel {
            display: none;
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: white;
            border: 2px solid var(--sage-pale);
            border-radius: 18px;
            box-shadow: 0 2px 20px rgba(61, 46, 30, 0.05);
        }
        .answer-area.visible .upgrade-panel {
            display: block;
        }
        .upgrade-panel-free-note {
            text-align: center;
            font-size: 0.85rem;
            color: var(--stone);
            margin-bottom: 1.1rem;
            font-weight: 500;
        }
        .upgrade-panel-tiers {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0.85rem;
            margin-bottom: 1rem;
        }
        @media (max-width: 600px) {
            .upgrade-panel-tiers { grid-template-columns: 1fr; }
        }
        .upgrade-tier {
            border: 1.5px solid var(--sage-pale);
            border-radius: 14px;
            padding: 0.9rem 0.75rem;
            text-align: center;
            background: var(--warm-white);
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .upgrade-tier:hover {
            border-color: var(--sage-light);
            box-shadow: 0 3px 14px rgba(91, 123, 94, 0.12);
        }
        .upgrade-tier.featured {
            border-color: var(--sage);
            background: white;
            box-shadow: 0 4px 20px rgba(91, 123, 94, 0.18);
            position: relative;
        }
        .upgrade-tier-badge {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--gold);
            background: var(--gold-pale);
            padding: 0.2rem 0.65rem;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            display: inline-block;
            margin-bottom: 0.4rem;
        }
        .upgrade-tier-price {
            font-family: 'DM Serif Display', serif;
            font-size: 1.9rem;
            color: var(--sage);
            line-height: 1;
            margin-bottom: 0.1rem;
        }
        .upgrade-tier-sub {
            font-size: 0.78rem;
            color: var(--stone);
            font-weight: 600;
            margin-bottom: 0.4rem;
        }
        .upgrade-tier-tag {
            font-size: 0.78rem;
            color: var(--bark-light);
            margin-bottom: 0.65rem;
            line-height: 1.35;
        }
        .upgrade-tier-btn {
            display: block;
            width: 100%;
            background: var(--sage);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 0.55rem 0.75rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, transform 0.1s;
            min-height: 44px;
        }
        .upgrade-tier-btn:hover {
            background: var(--sage-light);
            transform: translateY(-1px);
        }
        .upgrade-tier:not(.featured) .upgrade-tier-btn {
            background: transparent;
            color: var(--sage);
            border: 2px solid var(--sage);
        }
        .upgrade-tier:not(.featured) .upgrade-tier-btn:hover {
            background: var(--sage-pale);
        }
        .upgrade-tier-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            margin-top: 0.55rem;
            font-size: 0.75rem;
            color: var(--stone);
        }
        .upgrade-divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 0.85rem 0;
            color: var(--stone);
            font-size: 0.85rem;
        }
        .upgrade-divider::before, .upgrade-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(91, 123, 94, 0.1);
        }
        .upgrade-donate-link {
            display: block;
            text-align: center;
            font-size: 0.85rem;
            color: var(--stone);
            text-decoration: underline;
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            padding: 0.25rem;
        }
        .upgrade-donate-link:hover { color: var(--sage); }
        .upgrade-trust-row {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-top: 0.75rem;
        }
        .upgrade-trust-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.8rem;
            color: var(--stone);
        }
        .upgrade-trust-item svg {
            flex-shrink: 0;
        }

        .answer-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 2px 24px rgba(61, 46, 30, 0.06);
            border: 1px solid rgba(91, 123, 94, 0.08);
        }

        .answer-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--sage-pale);
        }

        .answer-avatar {
            width: 40px;
            height: 40px;
            background: var(--sage-pale);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .answer-name {
            font-weight: 700;
            color: var(--sage);
            font-size: 1rem;
        }

        .answer-tag {
            font-size: 1rem;
            color: var(--stone);
            font-weight: 500;
        }

        .answer-content {
            font-size: 1.35rem;
            line-height: 1.8;
            color: var(--bark);
        }

        .answer-content p {
            margin-bottom: 1rem;
        }

        .answer-content strong, .answer-content b {
            color: var(--bark);
            font-weight: 700;
            background: var(--gold-pale);
            padding: 0.1em 0.3em;
            border-radius: 4px;
        }

        .answer-content ol, .answer-content ul {
            margin: 0.75rem 0 1rem 1.5rem;
        }

        .answer-content li {
            margin-bottom: 0.75rem;
            padding-left: 0.25rem;
        }

        .follow-up-box {
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--sage-pale);
        }

        .follow-up-label {
            font-size: 1.1rem;
            color: var(--stone);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .follow-up-input {
            display: flex;
            gap: 0.75rem;
        }

        .follow-up-input input {
            flex: 1;
            padding: 0.85rem 1.25rem;
            border: 2px solid var(--sage-pale);
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            color: var(--bark);
            outline: none;
            transition: border-color 0.3s;
        }

        .follow-up-input input:focus {
            border-color: var(--sage);
        }

        .follow-up-input input::placeholder {
            color: var(--stone);
            opacity: 0.6;
        }

        .btn-follow {
            background: var(--sage);
            color: white;
            border: none;
            padding: 0.85rem 1.5rem;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .btn-follow:hover:not(:disabled) {
            background: var(--sage-light);
        }

        .btn-follow:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* NEW QUESTION BUTTON */
        .btn-new {
            display: none;
            margin: 1rem auto 2rem;
            background: var(--cream);
            color: var(--sage);
            border: 2px solid var(--sage-pale);
            padding: 0.75rem 1.75rem;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-new:hover {
            background: var(--sage-pale);
            border-color: var(--sage);
        }

        .btn-new.visible {
            display: block;
        }

        /* LOADING */
        .loading {
            display: none;
            text-align: center;
            padding: 3rem 2rem;
        }

        .loading.visible {
            display: block;
        }

        .loading-dots {
            display: inline-flex;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }

        .loading-dots span {
            width: 12px;
            height: 12px;
            background: var(--sage);
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite;
        }

        .loading-dots span:nth-child(2) { animation-delay: 0.2s; }
        .loading-dots span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
            40% { transform: scale(1); opacity: 1; }
        }

        .loading-text {
            font-size: 1.35rem;
            color: var(--stone);
            font-weight: 500;
        }

        /* ERROR */
        .error-msg {
            display: none;
            background: #FFF5F5;
            border: 1px solid #FED7D7;
            border-radius: 14px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.5rem;
            color: #C53030;
            font-size: 1rem;
        }

        .error-msg.visible {
            display: block;
        }

        /* PREVIOUS Q&A */
        .prev-qa {
            margin-bottom: 1.5rem;
        }

        .prev-item {
            background: var(--cream);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 0.75rem;
            border: 1px solid rgba(91, 123, 94, 0.06);
        }

        .prev-q {
            font-weight: 600;
            color: var(--bark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .prev-q::before {
            content: 'You asked: ';
            color: var(--stone);
            font-weight: 500;
        }

        .prev-a {
            font-size: 1.1rem;
            color: var(--bark-light);
            line-height: 1.6;
            max-height: 4.8rem;
            overflow: hidden;
            position: relative;
        }

        .prev-a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2rem;
            background: linear-gradient(transparent, var(--cream));
        }

        /* ABOUT / INTRO CONTENT SECTION */
        .about-section {
            background: var(--sage-pale);
            border-top: 2px solid rgba(91, 123, 94, 0.15);
            border-bottom: 2px solid rgba(91, 123, 94, 0.15);
            padding: 2.5rem 1.5rem;
        }
        .about-section-inner {
            max-width: 700px;
            margin: 0 auto;
        }
        .about-heading {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.5rem, 3.5vw, 2rem);
            color: var(--bark);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }
        .about-body {
            font-size: 1.05rem;
            color: var(--bark-light);
            line-height: 1.7;
            margin-bottom: 0.75rem;
        }
        .about-topics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem 1.5rem;
            margin: 1.25rem 0 0.5rem;
        }
        @media (max-width: 500px) {
            .about-topics { grid-template-columns: 1fr; }
        }
        .about-topic-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: var(--bark);
            line-height: 1.5;
        }
        .about-topic-icon {
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }
        .about-topic-text { color: var(--bark-light); }

        /* POPULAR QUESTIONS */
        .popular-section {
            margin: 0 auto 2.5rem;
            max-width: 800px;
        }

        .popular-heading {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            color: var(--bark);
            text-align: center;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .popular-sub {
            text-align: center;
            font-size: 1.1rem;
            color: var(--stone);
            margin-bottom: 1.5rem;
        }

        .popular-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        @media (max-width: 600px) {
            .popular-grid {
                grid-template-columns: 1fr;
            }
        }

        .popular-card {
            background: white;
            border: 1.5px solid rgba(91, 123, 94, 0.1);
            border-radius: 18px;
            padding: 1.25rem 1.35rem;
            cursor: pointer;
            text-align: left;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.22s;
            box-shadow: 0 2px 12px rgba(61, 46, 30, 0.04);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .popular-card:hover {
            background: var(--sage-pale);
            border-color: var(--sage-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(91, 123, 94, 0.12);
        }

        .popular-card-q {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--bark);
            line-height: 1.35;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .popular-card-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            line-height: 1.2;
        }

        .popular-card-a {
            font-size: 1.05rem;
            color: var(--stone);
            line-height: 1.55;
            /* 2-line clamp for compact preview */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .popular-card-cta {
            font-size: 1rem;
            font-weight: 600;
            color: var(--sage);
            margin-top: 0.2rem;
        }

        /* NEWSLETTER SIGNUP */
        .newsletter-section {
            max-width: 800px;
            margin: 0 auto 2.5rem;
            background: white;
            border: 2px solid var(--sage-pale);
            border-radius: 22px;
            padding: 2rem 2.25rem;
            text-align: center;
        }

        .newsletter-heading {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.4rem, 3vw, 1.75rem);
            color: var(--bark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .newsletter-sub {
            font-size: 1.1rem;
            color: var(--stone);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            gap: 0.75rem;
            max-width: 520px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.25rem;
            border: 2px solid var(--sage-pale);
            border-radius: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            color: var(--bark);
            outline: none;
            transition: border-color 0.25s;
            background: white;
        }

        .newsletter-input:focus {
            border-color: var(--sage);
        }

        .newsletter-input::placeholder {
            color: var(--stone);
            opacity: 0.55;
        }

        .newsletter-btn {
            background: var(--sage);
            color: white;
            border: none;
            padding: 1rem 1.75rem;
            border-radius: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            white-space: nowrap;
        }

        .newsletter-btn:hover:not(:disabled) {
            background: var(--sage-light);
            transform: translateY(-1px);
        }

        .newsletter-btn:active {
            transform: translateY(0);
        }

        .newsletter-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .newsletter-success {
            display: none;
            background: #F0FAF0;
            border: 1.5px solid var(--sage);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            color: #2F5E2F;
            font-size: 1.2rem;
            font-weight: 600;
            max-width: 520px;
            margin: 0 auto;
        }

        .newsletter-success.visible {
            display: block;
        }

        .newsletter-error {
            display: none;
            font-size: 1rem;
            color: #C53030;
            margin-top: 0.75rem;
            font-weight: 500;
        }

        .newsletter-error.visible {
            display: block;
        }

        @media (max-width: 560px) {
            .newsletter-form {
                flex-direction: column;
            }
            .newsletter-btn {
                padding: 1rem;
                text-align: center;
            }
        }

        /* FOOTER */
        footer {
            margin-top: auto;
            padding: 2rem 0 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(91, 123, 94, 0.08);
        }

        footer p {
            font-size: 1.1rem;
            color: var(--stone);
        }

        footer a {
            color: var(--sage);
            text-decoration: none;
            font-weight: 600;
        }

        /* Social icons */
        .social-icons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin: 1rem auto;
        }
        .social-icon {
            display: inline-flex;
            width: 32px;
            height: 32px;
            transition: transform 0.2s, opacity 0.2s;
            opacity: 0.75;
        }
        .social-icon:hover { transform: scale(1.15); opacity: 1; }

        /* Donation Thank-You Toast */
        .donation-toast {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(-12px);
            z-index: 400;
            background: white;
            border: 2px solid var(--sage-pale);
            border-left: 4px solid var(--sage);
            border-radius: 14px;
            box-shadow: 0 6px 32px rgba(61, 46, 30, 0.13);
            padding: 1rem 1.5rem 1rem 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            max-width: min(440px, calc(100vw - 2rem));
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
        }
        .donation-toast.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
        .donation-toast-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1.3; }
        .donation-toast-body { flex: 1; }
        .donation-toast-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--bark);
            margin-bottom: 0.2rem;
            line-height: 1.3;
        }
        .donation-toast-msg {
            font-size: 0.95rem;
            color: var(--stone);
            line-height: 1.4;
        }
        .donation-toast-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--stone);
            cursor: pointer;
            padding: 0 0 0 0.5rem;
            flex-shrink: 0;
            line-height: 1;
            transition: color 0.15s;
        }
        .donation-toast-close:hover { color: var(--bark); }

        /* Footer Donate Widget */
        .footer-donate {
            max-width: 420px;
            margin: 0 auto 1.5rem;
            padding: 0 1rem;
        }
        .footer-donate-label {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--bark);
        }
        .footer-donate-row {
            display: flex;
            gap: 0.6rem;
            align-items: center;
        }
        .footer-donate-input-wrap {
            display: flex;
            align-items: center;
            flex: 1;
            border-radius: 12px;
            border: 2px solid rgba(91, 123, 94, 0.25);
            background: white;
            overflow: hidden;
            padding: 0 0.75rem;
        }
        .footer-donate-prefix {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--bark);
            user-select: none;
            flex-shrink: 0;
        }
        .footer-donate-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.4rem;
            background: transparent;
            color: var(--bark);
            padding: 0.85rem 0 0.85rem 0.25rem;
            min-width: 0;
            font-family: inherit;
            -moz-appearance: textfield;
        }
        .footer-donate-input::-webkit-outer-spin-button,
        .footer-donate-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .footer-donate-input::placeholder { color: var(--stone); }
        .footer-donate-btn {
            background: var(--sage);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.35rem;
            font-weight: 700;
            padding: 0.85rem 1.5rem;
            cursor: pointer;
            font-family: inherit;
            white-space: nowrap;
            transition: background 0.2s, transform 0.1s;
            flex-shrink: 0;
        }
        .footer-donate-btn:hover { background: var(--sage-light); transform: translateY(-1px); }
        .footer-donate-btn:active { transform: translateY(0); }
        .footer-donate-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
        .footer-donate-error {
            font-size: 1rem;
            color: #C53030;
            margin-top: 0.5rem;
            min-height: 1.2em;
            font-weight: 500;
        }
        @media (max-width: 480px) {
            .footer-donate-row { flex-direction: column; align-items: stretch; }
            .footer-donate-btn { padding: 1rem; text-align: center; }
        }

        /* ── EMAIL CAPTURE MODAL ── */
        .email-capture-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 250;
            background: rgba(61, 46, 30, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .email-capture-overlay.visible {
            display: flex;
        }

        .email-capture-card {
            background: white;
            border-radius: 24px;
            padding: 2rem 1.75rem;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 12px 60px rgba(61, 46, 30, 0.18);
            border: 1px solid rgba(91, 123, 94, 0.1);
            text-align: center;
        }

        .email-capture-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .email-capture-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.35rem, 4vw, 1.65rem);
            color: var(--bark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .email-capture-msg {
            font-size: 1.35rem;
            color: var(--bark-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .email-capture-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .email-capture-form input {
            width: 100%;
            padding: 0.9rem 1.1rem;
            border: 2px solid var(--sage-pale);
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            color: var(--bark);
            outline: none;
            transition: border-color 0.25s;
            text-align: center;
        }

        .email-capture-form input:focus {
            border-color: var(--sage);
        }

        .email-capture-form input::placeholder {
            color: var(--stone);
            opacity: 0.7;
        }

        .email-capture-submit {
            background: var(--sage);
            color: white;
            border: none;
            padding: 0.95rem 1.5rem;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
        }

        .email-capture-submit:hover {
            background: var(--sage-light);
            transform: translateY(-1px);
        }

        .email-capture-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .email-capture-skip {
            background: none;
            border: none;
            color: var(--stone);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 0.5rem;
            margin-top: 0.25rem;
            text-decoration: underline;
            transition: color 0.2s;
        }

        .email-capture-skip:hover {
            color: var(--bark-light);
        }

        .email-capture-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--stone);
            cursor: pointer;
            line-height: 1;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
        }

        .email-capture-close:hover {
            color: var(--bark);
            background: var(--cream);
        }

        .email-capture-card {
            position: relative;
        }

        .email-capture-success {
            display: none;
            color: #2E7D32;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .email-capture-success.visible {
            display: block;
        }

        /* ── PWA INSTALL BANNER ────────────────────────────────────────────── */
        .pwa-install-banner {
            display: none;
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            max-width: 500px;
            margin: 0 auto;
            background: white;
            border: 2px solid var(--sage-pale);
            border-radius: 20px;
            padding: 1.1rem 1.25rem;
            box-shadow: 0 6px 32px rgba(61, 46, 30, 0.14);
            z-index: 300;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .pwa-install-banner.visible {
            display: flex;
            animation: pwa-slide-up 0.35s ease;
        }

        @keyframes pwa-slide-up {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .pwa-install-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .pwa-install-text {
            flex: 1;
        }

        .pwa-install-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--bark);
            margin-bottom: 0.15rem;
            line-height: 1.3;
        }

        .pwa-install-sub {
            font-size: 1.1rem;
            color: var(--stone);
            line-height: 1.4;
        }

        .pwa-install-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .btn-install {
            background: var(--sage);
            color: white;
            border: none;
            padding: 0.65rem 1.1rem;
            border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            white-space: nowrap;
        }

        .btn-install:hover {
            background: var(--sage-light);
            transform: translateY(-1px);
        }

        .btn-install-dismiss {
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--stone);
            cursor: pointer;
            padding: 0.25rem 0.4rem;
            line-height: 1;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
            flex-shrink: 0;
        }

        .btn-install-dismiss:hover {
            color: var(--bark);
            background: var(--cream);
        }

        @media (max-width: 640px) {
            .pwa-install-banner {
                bottom: 1rem;
                left: 1rem;
                right: 1rem;
                padding: 1rem 1rem;
            }
        }

        /* ── DONATION PROMPT ── */
        .donation-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 250;
            background: rgba(61, 46, 30, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }
        .donation-overlay.visible { display: flex; }
        .donation-card {
            background: white;
            border-radius: 24px;
            padding: 2.25rem 2rem;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 12px 60px rgba(61, 46, 30, 0.18);
            border: 1px solid rgba(91, 123, 94, 0.1);
            text-align: center;
            position: relative;
        }
        .donation-close {
            position: absolute; top: 1rem; right: 1rem;
            background: none; border: none; font-size: 1.4rem;
            color: var(--stone); cursor: pointer; line-height: 1;
            padding: 0.25rem 0.5rem; border-radius: 6px;
            transition: color 0.2s, background 0.2s;
        }
        .donation-close:hover { color: var(--bark); background: var(--cream); }
        .donation-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
        .donation-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.35rem, 4vw, 1.65rem);
            color: var(--bark); margin-bottom: 0.5rem; letter-spacing: -0.01em;
        }
        .donation-msg {
            font-size: 1rem; color: var(--bark-light);
            line-height: 1.6; margin-bottom: 1.5rem;
        }
        .donation-section-label {
            font-size: 1.1rem; font-weight: 600; color: var(--stone);
            text-transform: uppercase; letter-spacing: 0.06em;
            text-align: center; margin-bottom: 0.85rem;
        }
        .donation-btns {
            display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 1.25rem;
        }
        .donation-btn {
            flex: 1; max-width: 120px;
            background: var(--sage); color: white;
            border: 2px solid var(--sage); border-radius: 14px;
            padding: 1rem 0; font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem; font-weight: 800;
            text-decoration: none; transition: all 0.25s;
            box-shadow: 0 4px 16px rgba(91, 123, 94, 0.3);
        }
        .donation-btn:hover {
            background: var(--sage-light); border-color: var(--sage-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(91, 123, 94, 0.4);
        }
        .donation-btn-featured {
            background: #3A6B35; color: white;
            border-color: #3A6B35;
            box-shadow: 0 4px 16px rgba(58, 107, 53, 0.4);
        }
        .donation-btn-featured:hover {
            background: #2d5530; border-color: #2d5530; color: white;
        }
        .donation-skip {
            background: none; border: none;
            color: var(--stone); font-size: 1.1rem;
            cursor: pointer; padding: 0.5rem;
            text-decoration: underline; transition: color 0.2s;
        }
        .donation-skip:hover { color: var(--bark-light); }

        /* Custom amount row */
        .donation-custom-row {
            display: flex; gap: 0.5rem; align-items: stretch;
        }
        .donation-custom-wrap {
            position: relative; flex: 1; max-width: 140px;
        }
        .donation-custom-wrap::before {
            content: '$'; position: absolute; left: 12px; top: 50%;
            transform: translateY(-50%); font-size: 1.1rem;
            font-weight: 600; color: var(--bark); pointer-events: none;
        }
        .donation-custom-input {
            width: 100%; padding: 0.75rem 0.75rem 0.75rem 2rem;
            border: 2px solid var(--sage-pale); border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem; font-weight: 600; color: var(--bark);
            background: white; outline: none; transition: border-color 0.25s;
            -moz-appearance: textfield;
        }
        .donation-custom-input::-webkit-outer-spin-button,
        .donation-custom-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
        .donation-custom-input:focus { border-color: var(--sage); }
        .donation-custom-input::placeholder { color: var(--stone); opacity: 0.6; font-weight: 400; }
        .donation-custom-input.error { border-color: #C53030; }
        .donation-error-msg {
            display: none; font-size: 1.1rem; color: #C53030;
            text-align: center; margin-bottom: 0.5rem; font-weight: 500;
        }
        .donation-error-msg.visible { display: block; }
        .btn-donate-custom {
            background: var(--sage); color: white; border: none;
            padding: 0.75rem 1.25rem; border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem; font-weight: 600; cursor: pointer;
            transition: all 0.25s; white-space: nowrap;
            display: flex; align-items: center; gap: 0.3rem;
        }
        .btn-donate-custom:hover:not(:disabled) {
            background: var(--sage-light); transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(91, 123, 94, 0.3);
        }
        .btn-donate-custom:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        /* RESPONSIVE */
        @media (max-width: 640px) {
            .main-nav { padding: 0.75rem 1rem; }
            .topic-nav {
                top: 48px; /* shorter nav on mobile */
                padding: 0.3rem 0.5rem;
                justify-content: flex-start; /* scroll-start on mobile */
                gap: 0.15rem;
                -webkit-mask-image: linear-gradient(to right, transparent 0, black 8px, black calc(100% - 18px), transparent 100%);
                mask-image: linear-gradient(to right, transparent 0, black 8px, black calc(100% - 18px), transparent 100%);
            }
            .topic-nav a {
                font-size: 0.72rem;
                padding: 0.2rem 0.5rem;
            }
            .main { padding: 6rem 1rem 1.5rem; /* nav 48 + topic ~32 + 16px gap */ }
            .footer-nav { font-size: 0.85rem; line-height: 2; }
            .footer-nav a { margin: 0 0.5rem; }
            .common-grid { grid-template-columns: 1fr; }
            .ask-box { padding: 1rem; }
            .ask-box textarea { font-size: 1.2rem; min-height: 72px; }
            .ask-actions {
                margin-top: 0.6rem;
                padding-top: 0.6rem;
            }
            .ask-actions-left { gap: 0.5rem; }
            .btn-ask {
                padding: 0.85rem 1rem;
                font-size: 1.2rem;
                width: 100%;
            }
            .answer-card { padding: 1.5rem; }
            .answer-content { font-size: 1.35rem; }
            .follow-up-input { flex-direction: column; }
            .follow-up-input input { font-size: 1rem; }
        }

        /* Tablet breakpoint — topic nav adjustments */
        @media (min-width: 641px) and (max-width: 1024px) {
            .topic-nav { gap: 0.3rem; padding: 0.45rem 1.5rem; }
            .topic-nav a { font-size: 0.8rem; padding: 0.3rem 0.65rem; }
        }

        /* Desktop — topic nav centered with generous spacing */
        @media (min-width: 1025px) {
            .topic-nav { gap: 0.5rem; padding: 0.5rem 2rem; }
            .topic-nav a { font-size: 0.85rem; padding: 0.35rem 0.85rem; }
        }

        /* FREE QUESTION COUNTER */
        .free-counter {
            font-size: 0.85rem;
            color: var(--stone);
            background: var(--gold-pale);
            border: 1px solid rgba(196, 153, 59, 0.3);
            border-radius: 20px;
            padding: 0.2rem 0.65rem;
            white-space: nowrap;
        }
        .free-counter.near-limit {
            color: #8a6010;
            background: #f5e8b8;
            border-color: rgba(196, 153, 59, 0.5);
        }
        .free-counter.exhausted {
            color: #7a4a10;
            background: #f0d890;
            border-color: rgba(196, 153, 59, 0.6);
        }

        /* SOFT PAYWALL MODAL */
        .gated-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(61, 46, 30, 0.65);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            backdrop-filter: blur(4px);
        }
        .gated-overlay.visible { display: flex; }
        .gated-card {
            background: var(--warm-white);
            border-radius: 20px;
            padding: 2rem;
            max-width: 480px;
            width: 100%;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(61, 46, 30, 0.25);
        }
        .gated-close {
            position: absolute;
            top: 1rem;
            right: 1.25rem;
            background: none;
            border: none;
            font-size: 1.75rem;
            cursor: pointer;
            color: var(--stone);
            line-height: 1;
        }
        .gated-close:hover { color: var(--bark); }
        .gated-icon { font-size: 3rem; margin-bottom: 0.5rem; }
        .gated-title {
            font-family: 'DM Serif Display', serif;
            font-size: 1.6rem;
            color: var(--bark);
            margin: 0 0 0.75rem;
        }
        .gated-msg {
            font-size: 1.05rem;
            color: var(--bark-light);
            margin: 0 0 1.5rem;
            line-height: 1.6;
        }
        .gated-tiers {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0.6rem;
            margin-bottom: 1rem;
        }
        .gated-tier {
            border: 2px solid rgba(91, 123, 94, 0.15);
            border-radius: 14px;
            padding: 0.85rem 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
            transition: border-color 0.2s;
        }
        .gated-tier.featured {
            border-color: var(--sage);
            background: var(--sage-pale);
        }
        .gated-tier-badge {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--sage);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 0.1rem;
        }
        .gated-tier-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--bark);
        }
        .gated-tier-sub {
            font-size: 0.8rem;
            color: var(--stone);
        }
        .gated-tier-tag {
            font-size: 0.78rem;
            color: var(--sage);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .gated-tier-btn {
            display: inline-block;
            background: var(--sage);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }
        .gated-tier-btn:hover { background: var(--sage-light); }
        .gated-tier.featured .gated-tier-btn { background: var(--sage); }
        .gated-trust {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            font-size: 0.8rem;
            color: var(--stone);
            margin-bottom: 1rem;
        }
        .gated-reset {
            background: none;
            border: none;
            color: var(--stone);
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: underline;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        .gated-reset:hover { color: var(--bark); }

        /* MODAL MOBILE POLISH — 375px+ */
        @media (max-width: 480px) {
            .email-capture-card,
            .donation-card {
                border-radius: 20px;
                padding: 1.5rem 1.25rem;
                max-height: calc(100vh - 2rem);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            .email-capture-icon,
            .donation-icon { font-size: 2.2rem; }
            .email-capture-title,
            .donation-title { font-size: 1.4rem; }
            .email-capture-msg,
            .donation-msg { font-size: 1rem; }
            .donation-btns { gap: 0.5rem; }
            .donation-btn { font-size: 1.25rem; padding: 0.85rem 0; }
            .donation-custom-row { flex-wrap: wrap; }
            .donation-custom-wrap { max-width: 100%; flex: 1; }
            .btn-donate-custom { padding: 0.75rem 1rem; font-size: 1.1rem; width: 100%; }

            /* PWA banner on small screens */
            .pwa-install-banner { flex-direction: column; align-items: flex-start; }
            .pwa-install-actions { width: 100%; justify-content: flex-end; }

            /* Gated modal */
            .gated-card { padding: 1.5rem; max-width: calc(100vw - 2rem); }
            .gated-tiers { grid-template-columns: 1fr; }
            .gated-tier.featured { order: -1; }
            .gated-title { font-size: 1.35rem; }
            .gated-icon { font-size: 2.5rem; }
        }

        /* Tablet polish — 481px to 768px */
        @media (min-width: 481px) and (max-width: 768px) {
            .email-capture-card,
            .donation-card {
                max-width: 480px;
                padding: 1.75rem 1.5rem;
            }
            .gated-card { max-width: 500px; }
            .gated-tiers { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
            .gated-tier { padding: 0.75rem 0.4rem; }
            .gated-tier-btn { font-size: 0.8rem; }
        }
