/* ── Reach — Cold Outreach Writer ───────────────────────────────────────────
   Self-contained. Accent: #10b981 (emerald green)
   ────────────────────────────────────────────────────────────────────────── */

/* ── Page shell ─────────────────────────────────────────────────────────── */
.reach-page {
    background: #060f1a;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: -96px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.reach-header {
    background: linear-gradient(140deg, #060f1a 0%, #071e17 55%, #071a14 100%);
    border-bottom: 1px solid rgba(16, 185, 129, 0.18);
    position: relative;
    margin: -60px 0 -110px 0;
}

.reach-header .back-to-store-btn {
    display: inline-flex !important;
    width: auto;
    align-self: flex-start;
}

.reach-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.09) 0%, transparent 65%);
    pointer-events: none;
}

.reach-header__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.reach-header__badge {
    display: inline-flex;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.30);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 12px;
    margin-bottom: 10px;
}

.reach-header__title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.reach-header__subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
}

.reach-header__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.reach-chip {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.70);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
}

.reach-chip--channel {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.28);
    color: #10b981;
}

.reach-chip--ai {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.28);
    color: #a78bfa;
}

/* ── Body ───────────────────────────────────────────────────────────────── */
.reach-body {
    padding: 80px 0 80px;
}

/* ── Form grid ──────────────────────────────────────────────────────────── */
.reach-form-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
}

.reach-col {
    display: flex;
    flex-direction: column;
}

/* ── Card ───────────────────────────────────────────────────────────────── */
.reach-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.reach-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.reach-step {
    font-size: 0.68rem;
    font-weight: 800;
    color: #10b981;
    letter-spacing: 0.10em;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 6px;
    padding: 3px 8px;
}

.reach-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ── Fields ─────────────────────────────────────────────────────────────── */
.reach-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reach-fields--mt {
    margin-top: 14px;
}

.reach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.reach-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.18s;
    width: 100%;
    box-sizing: border-box;
}

.reach-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.reach-input:focus {
    border-color: rgba(16, 185, 129, 0.50);
}

.reach-input--search {
    padding-left: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='rgba(255,255,255,0.30)' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
}

.reach-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    padding: 10px 14px;
    outline: none;
    resize: vertical;
    transition: border-color 0.18s;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.55;
}

.reach-textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.reach-textarea:focus {
    border-color: rgba(16, 185, 129, 0.50);
}

.reach-textarea--ask {
    border-color: rgba(16, 185, 129, 0.20);
}

/* ── Ask presets ─────────────────────────────────────────────────────────── */
.reach-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.reach-preset-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 11px;
    cursor: pointer;
    transition: all 0.15s;
}

.reach-preset-pill:hover,
.reach-preset-pill.active {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.32);
    color: #10b981;
}

/* ── Search dropdown ────────────────────────────────────────────────────── */
.reach-search-wrap {
    position: relative;
}

.reach-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0c1e2c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 200;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.reach-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.13s;
}

.reach-dropdown__item:hover {
    background: rgba(16, 185, 129, 0.07);
}

.reach-dropdown__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.reach-dropdown__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reach-dropdown__info {
    display: flex;
    flex-direction: column;
}

.reach-dropdown__name {
    font-size: 0.87rem;
    font-weight: 600;
    color: #fff;
}

.reach-dropdown__meta {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.38);
}

.reach-dropdown__empty {
    padding: 18px;
    color: rgba(255, 255, 255, 0.30);
    font-size: 0.84rem;
    text-align: center;
    margin: 0;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.reach-or {
    text-align: center;
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.76rem;
    margin: 14px 0 8px;
}

/* ── Selected influencer ────────────────────────────────────────────────── */
.reach-selected {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 12px;
    padding: 14px 40px 14px 16px;
    position: relative;
}

.reach-selected__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.reach-selected__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reach-selected__info {
    flex: 1;
    min-width: 0;
}

.reach-selected__name {
    font-size: 0.94rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
}

.reach-selected__meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    margin: 0 0 3px;
}

.reach-selected__niches {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.28);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reach-platform-tag {
    font-weight: 700;
}

.reach-clear-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.28);
    font-size: 1.15rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    transition: color 0.15s;
}

.reach-clear-btn:hover {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Settings grid ──────────────────────────────────────────────────────── */
.reach-settings-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reach-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.reach-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reach-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.15s;
}

.reach-pill:hover {
    background: rgba(16, 185, 129, 0.09);
    border-color: rgba(16, 185, 129, 0.28);
    color: #10b981;
}

.reach-pill.active {
    background: rgba(16, 185, 129, 0.16);
    border-color: rgba(16, 185, 129, 0.48);
    color: #10b981;
    font-weight: 700;
}

/* ── Generate button ────────────────────────────────────────────────────── */
.reach-generate-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.15s;
    letter-spacing: 0.01em;
}

.reach-generate-btn:hover:not(:disabled) {
    opacity: 0.88;
    transform: translateY(-1px);
}

.reach-generate-btn:disabled {
    opacity: 0.50;
    cursor: not-allowed;
}

.reach-generate-btn--loading {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

/* ── Error / hint ───────────────────────────────────────────────────────── */
.reach-error {
    color: #f87171;
    font-size: 0.84rem;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.20);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.reach-hint {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
    margin: 8px 0 0;
}

/* ── Results section ────────────────────────────────────────────────────── */
.reach-results {
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.reach-results__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.reach-results__sub {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 24px;
}

/* ── Variation cards grid ───────────────────────────────────────────────── */
.reach-variations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reach-variation {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.20s;
}

.reach-variation:hover {
    border-color: rgba(16, 185, 129, 0.25);
}

.reach-variation__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.reach-variation__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.reach-copy-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.15s;
}

.reach-copy-btn:hover,
.reach-copy-btn.copied {
    background: rgba(16, 185, 129, 0.13);
    border-color: rgba(16, 185, 129, 0.32);
    color: #10b981;
}

.reach-variation__subject {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid rgba(16, 185, 129, 0.38);
    padding: 6px 10px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
    line-height: 1.4;
}

.reach-variation__subject-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.30);
    margin-right: 6px;
    font-size: 0.70rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.reach-variation__body {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.80);
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.72;
    flex: 1;
    margin: 0 0 12px;
    font-family: inherit;
}

.reach-variation__chars {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.18);
    margin: 0;
    text-align: right;
}

/* ── Regenerate ─────────────────────────────────────────────────────────── */
.reach-regen-btn {
    margin-top: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.44);
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 0.87rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
}

.reach-regen-btn:hover:not(:disabled) {
    border-color: rgba(16, 185, 129, 0.32);
    color: #10b981;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .reach-form-grid {
        grid-template-columns: 1fr;
    }
    .reach-variations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .reach-row {
        grid-template-columns: 1fr;
    }
    .reach-header__body {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Reach light mode ────────────────────────────────────────────────────── */
html[data-theme="light"] .reach-page { background: #edfdf5; }
html[data-theme="light"] .reach-page .reach-header {
    background: linear-gradient(140deg, #dcfce7 0%, #bbf7d0 55%, #dcfce7 100%);
    border-bottom-color: rgba(16, 185, 129, 0.35);
}
html[data-theme="light"] .reach-page .reach-header__badge {
    color: #047857;
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.35);
}
html[data-theme="light"] .reach-page .reach-header__title { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-header__subtitle { color: rgba(6, 78, 59, 0.65); }
html[data-theme="light"] .reach-page .reach-chip { color: #047857; border-color: rgba(16, 185, 129, 0.30); background: rgba(16, 185, 129, 0.10); }
html[data-theme="light"] .reach-page .reach-body { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-form-card { background: #fff; border-color: rgba(16, 185, 129, 0.20); box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08); }
html[data-theme="light"] .reach-page .reach-section-title { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-label { color: #065f46; }
/* Cards */
html[data-theme="light"] .reach-page .reach-card { background: #fff; border-color: rgba(16, 185, 129, 0.18); }
html[data-theme="light"] .reach-page .reach-card__title { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-card__head { border-color: rgba(16, 185, 129, 0.15); }
/* Inputs */
html[data-theme="light"] .reach-page .reach-input { background: #f0fdf4; color: #064e3b; border-color: rgba(16, 185, 129, 0.28); }
html[data-theme="light"] .reach-page .reach-input::placeholder { color: rgba(6, 78, 59, 0.38); }
html[data-theme="light"] .reach-page .reach-input:focus { border-color: rgba(16, 185, 129, 0.60); }
html[data-theme="light"] .reach-page .reach-select,
html[data-theme="light"] .reach-page .reach-textarea { background: #f0fdf4; color: #064e3b; border-color: rgba(16, 185, 129, 0.28); }
html[data-theme="light"] .reach-page .reach-textarea::placeholder { color: rgba(6, 78, 59, 0.38); }
/* Divider */
html[data-theme="light"] .reach-page .reach-or-divider { color: rgba(6, 78, 59, 0.45); }
html[data-theme="light"] .reach-page .reach-or-divider::before,
html[data-theme="light"] .reach-page .reach-or-divider::after { background: rgba(16, 185, 129, 0.25); }
/* Section labels (CHANNEL, TONE) */
html[data-theme="light"] .reach-page .reach-section-label { color: #047857; }
/* Pills */
html[data-theme="light"] .reach-page .reach-pill { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.25); color: #065f46; }
html[data-theme="light"] .reach-page .reach-pill:hover { background: rgba(16, 185, 129, 0.15); color: #047857; }
html[data-theme="light"] .reach-page .reach-pill.active { background: rgba(16, 185, 129, 0.20); border-color: rgba(16, 185, 129, 0.55); color: #047857; }
/* "— or enter manually —" divider */
html[data-theme="light"] .reach-page .reach-or { color: rgba(6, 78, 59, 0.45); }
/* Preset / ask chips */
html[data-theme="light"] .reach-page .reach-preset-pill { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.22); color: #065f46; }
html[data-theme="light"] .reach-page .reach-preset-pill:hover,
html[data-theme="light"] .reach-page .reach-preset-pill.active { background: rgba(16, 185, 129, 0.18); border-color: rgba(16, 185, 129, 0.45); color: #047857; }
/* Results */
html[data-theme="light"] .reach-page .reach-result-card { background: #fff; border-color: rgba(16, 185, 129, 0.20); }
html[data-theme="light"] .reach-page .reach-result-card__body { color: #1e3a32; }
html[data-theme="light"] .reach-page .reach-result-label { color: #047857; }

/* ═══════════════════════════════════════════════════════════════════
   How It Works — button + modal
   ═══════════════════════════════════════════════════════════════════ */

.reach-hiw-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.50);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.reach-hiw-btn:hover {
    background: rgba(16, 185, 129, 0.14);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.35);
}

.reach-hiw-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 6, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: reach-backdrop-in 0.18s ease;
}
@keyframes reach-backdrop-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reach-hiw-modal {
    position: relative;
    background: #060f0a;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 20px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.70), 0 0 0 1px rgba(16, 185, 129, 0.08);
    animation: reach-modal-in 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 185, 129, 0.20) transparent;
}
.reach-hiw-modal::-webkit-scrollbar       { width: 5px; }
.reach-hiw-modal::-webkit-scrollbar-thumb { background: rgba(16, 185, 129, 0.20); border-radius: 99px; }

@keyframes reach-modal-in {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.reach-hiw-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.reach-hiw-modal__close:hover { background: rgba(239, 68, 68, 0.15); color: #f87171; border-color: rgba(239, 68, 68, 0.30); }

.reach-hiw-modal__header { margin-bottom: 28px; padding-right: 40px; }

.reach-hiw-modal__eyebrow {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #10b981;
    margin: 0 0 8px;
}

.reach-hiw-modal__title {
    font-size: 1.50rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.reach-hiw-modal__subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    line-height: 1.6;
}

/* Sections */
.reach-hiw-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}
.reach-hiw-section:first-of-type { border-top: none; }

.reach-hiw-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.reach-hiw-section__icon {
    font-size: 1.15rem;
    width: 34px;
    height: 34px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reach-hiw-section__title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.reach-hiw-section__body {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 10px;
}
.reach-hiw-section__body:last-child { margin-bottom: 0; }
.reach-hiw-section__body strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.reach-hiw-section__body em     { color: #6ee7b7; font-style: normal; }

/* Passes list */
.reach-hiw-passes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.reach-hiw-pass {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
}

.reach-hiw-pass__num {
    min-width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.30);
    border-radius: 50%;
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 4px;
}

.reach-hiw-pass__content { flex: 1; min-width: 0; }

.reach-hiw-pass__title {
    font-size: 0.83rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
    margin: 0 0 4px;
}

.reach-hiw-pass__desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

/* ── Light mode ───────────────────────────────────────────────────── */
html[data-theme="light"] .reach-page .reach-hiw-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); color: #047857; }
html[data-theme="light"] .reach-page .reach-hiw-btn:hover { background: rgba(16,185,129,0.10); color: #047857; border-color: rgba(16,185,129,0.35); }

html[data-theme="light"] .reach-page .reach-hiw-modal { background: #fff; border-color: rgba(16,185,129,0.28); box-shadow: 0 32px 100px rgba(0,0,0,0.12); }
html[data-theme="light"] .reach-page .reach-hiw-modal__close { background: rgba(0,0,0,0.04); border-color: #e7e5e4; color: #78716c; }
html[data-theme="light"] .reach-page .reach-hiw-modal__eyebrow { color: #047857; }
html[data-theme="light"] .reach-page .reach-hiw-modal__title { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-hiw-modal__subtitle { color: #4b5563; }
html[data-theme="light"] .reach-page .reach-hiw-section { border-top-color: #f0ede8; }
html[data-theme="light"] .reach-page .reach-hiw-section__icon { background: rgba(16,185,129,0.10); }
html[data-theme="light"] .reach-page .reach-hiw-section__title { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-hiw-section__body { color: #374151; }
html[data-theme="light"] .reach-page .reach-hiw-section__body strong { color: #064e3b; }
html[data-theme="light"] .reach-page .reach-hiw-section__body em { color: #047857; }
html[data-theme="light"] .reach-page .reach-hiw-pass { background: #f9fafb; border-color: #e7e5e4; }
html[data-theme="light"] .reach-page .reach-hiw-pass__title { color: #1c1917; }
html[data-theme="light"] .reach-page .reach-hiw-pass__desc { color: #6b7280; }
