﻿/* Bootstrap 5 primary = brand FOREST (was forced blue). This single change
   rebrands every Bootstrap button / link / badge / alert / form control across
   the app, because the brand primary flows through --bs-primary everywhere.
   Orange is intentionally NOT the global primary — it stays a disciplined
   accent (CTAs, capture, wayfinding) applied via .ho-btn-accent. */
:root {
    --bs-primary: #2d6a4f;            /* pine — readable with white text */
    --bs-primary-rgb: 45, 106, 79;
    --bs-link-color: #226048;
    --bs-link-hover-color: #14402f;
}

.btn-primary {
    --bs-btn-bg: #2d6a4f;
    --bs-btn-border-color: #2d6a4f;
    --bs-btn-hover-bg: #235740;
    --bs-btn-hover-border-color: #1f4e3a;
    --bs-btn-active-bg: #1b4332;
    --bs-btn-active-border-color: #173a2c;
    --bs-btn-disabled-bg: #2d6a4f;
    --bs-btn-disabled-border-color: #2d6a4f;
}

.btn-outline-primary {
    --bs-btn-color: #2d6a4f;
    --bs-btn-border-color: #2d6a4f;
    --bs-btn-hover-bg: #2d6a4f;
    --bs-btn-hover-border-color: #2d6a4f;
    --bs-btn-active-bg: #1b4332;
    --bs-btn-active-border-color: #1b4332;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Helvetica, Arial;
    height: 100%;
    overflow: hidden;
    background-color: var(--ho-canvas, #f5f2ea);   /* warm paper, not cool gray */
}

/* Accessibility: nudge the base type size up so every rem-based size across the
   app scales for mature/older readers. 17px (~6%) is a gentle, broad lift.
   Dial here (16.5/17/18) rather than per-rule. */
html { font-size: 17px; }
.mainLayout {
    height: 100%;
    overflow: hidden;
}

.vh-100 {
    height: auto !important;
}

.vh-90 {
    height: 90% !important;
}

.page {
    overflow: visible !important;
}


.e-bigger {
    font-size: large;
}

a, .btn-link {
    color: #226048;
}

/* Reconnect modal styles are in ReconnectModal.razor.css */

/* ===================================================================
   HANG OUTDOORS — BRAND SHELL ("Expedition" re-skin)
   Promotes the validated /coming-soon palette into reusable vars and
   re-skins the app chrome (header, nav rail, FABs) to carry the brand.
   Structure & behavior of every component is unchanged — this is skin
   only. Overrides target Atlas RCL components (header, drawer, capture
   FAB) without editing the package, via higher specificity / !important
   (same pattern ComingSoonLayout uses for the reconnect modal).
   =================================================================== */
:root {
    --ho-deep:    #08152b;  /* deepest predawn sky */
    --ho-night:   #16264c;  /* logo navy */
    --ho-slate:   #3e5680;  /* logo mountain slate */
    --ho-forest:  #1b4332;  /* forest */
    --ho-pine:    #2d6a4f;  /* midtone pine */
    --ho-emerald: #40916c;  /* light forest */
    --ho-mint:    #6ee7b7;  /* mint accent */
    --ho-orange:  #f26b1f;  /* hunter orange */
    --ho-amber:   #ff9a3c;  /* warm sunrise */
    --ho-gold:    #ffd68a;  /* sun highlight */
    --ho-cream:   #fff5e6;  /* sun center / chrome text */

    /* ---- Semantic role tokens (the unified system's working vocabulary) ---- */
    --ho-ink:      #1d2a23;   /* primary text — warm near-black, green-tinted */
    --ho-ink-soft: #44524b;   /* secondary text */
    --ho-muted:    #6b7a72;   /* tertiary / captions */
    --ho-line:     #e7e1d4;   /* warm hairline border (replaces cool #e7e5e4) */
    --ho-line-soft:#f0ebe0;
    --ho-surface:  #ffffff;   /* card / panel surface */
    --ho-raised:   #fbf9f4;   /* faintly warm raised surface / striping */
    --ho-canvas:   #f5f2ea;   /* warm paper page background */
    --ho-tint:     #eef4ef;   /* faint forest tint (section fills, hovers) */
    --ho-tint-warm:#fdf4e7;   /* faint sunrise tint */

    --ho-radius:    14px;
    --ho-radius-sm: 10px;
    --ho-radius-lg: 20px;
    --ho-shadow-sm: 0 1px 2px rgba(27,67,50,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --ho-shadow-md: 0 10px 24px rgba(0,0,0,0.10);
    --ho-shadow-lg: 0 18px 44px rgba(8,21,43,0.16);

    /* ---- Sanctioned classification accents (wayfinding + variety) ----
       Heroes, library sections, and cards may lean on these. They ARE part of
       the system — not every surface must be forest green. */
    --acc-places:  #2d6a4f;   /* forest */
    --acc-fauna:   #2563eb;   /* blue */
    --acc-flora:   #16a34a;   /* green */
    --acc-geology: #78716c;   /* stone */
    --acc-fungi:   #ea580c;   /* orange */
    --acc-astro:   #4f46e5;   /* indigo */
    --acc-guides:  #d97706;   /* amber */
    --acc-water:   #0891b2;   /* cyan (water bodies) */

    /* Header banners — ONE knob for all page heroes. Navy to blend with the
       dark nav rail so the chrome reads as a single frame. Flip to
       var(--ho-forest) for green headers. */
    --ho-header-bg: #16264c;  /* logo navy */
}

/* ---- Header: warm off-white with a hunter-orange trail stripe ---- */
.siteHeader {
    background: #fffaf2 !important;
    border-bottom: 1px solid #e7dccb !important;
    border-top: 3px solid var(--ho-orange) !important;
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.04) !important;
}
/* Drawer toggle — forest, fills on hover */
.siteHeader .siteHeader-drawer-toggle {
    background: #ffffff !important;
    border-color: var(--ho-pine) !important;
    color: var(--ho-forest) !important;
}
.siteHeader .siteHeader-drawer-toggle:hover {
    background: var(--ho-forest) !important;
    color: #ffffff !important;
}
/* Right-side items — warm hover instead of cool stone */
.siteHeader .siteHeader-item:hover {
    background: #f7efe2 !important;
    border-color: #ead9bf !important;
    color: var(--ho-forest) !important;
}

/* Tagline beside the wordmark — a visible orange trail-blaze rule + forest
   ink so it reads as an intentional brand line, not faint body text. */
.siteHeader .siteHeader-tagline {
    margin-left: 1.1rem !important;
    gap: 1rem !important;
}
.siteHeader .siteHeader-tagline-rule {
    width: 3px !important;
    height: 30px !important;
    border-radius: 3px !important;
    background: linear-gradient(180deg, var(--ho-amber), var(--ho-orange)) !important;
}
.siteHeader .siteHeader-tagline-text {
    color: var(--ho-pine) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
}

/* Login / Signup — the one anonymous CTA. Outlined forest pill that fills on
   hover, matching the drawer toggle so the chrome reads as one system. */
.siteHeader .siteHeader-login {
    border: 1.5px solid var(--ho-pine) !important;
    color: var(--ho-forest) !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    padding: 0 1.1rem !important;
}
.siteHeader .siteHeader-login:hover {
    background: var(--ho-forest) !important;
    border-color: var(--ho-forest) !important;
    color: #ffffff !important;
}

/* ---- Nav rail: dark navy → forest "expedition" panel ----
   Atlas WorkspaceDrawer sets the panel background to #fff at
   `.ws-drawer-host .ws-drawer-panel`. The Outdoors layout adds the
   `ho-drawer` class, so this 3-class selector wins on specificity. */
.ws-drawer-host.ho-drawer .ws-drawer-panel {
    background: linear-gradient(180deg, var(--ho-night) 0%, #143a37 58%, #0f3d2e 100%);
    /* Faint topographic contour rings — emanate from corners like a peak.
       Very low opacity so cream nav text stays crisp. */
    background-image:
        linear-gradient(180deg, var(--ho-night) 0%, #143a37 58%, #0f3d2e 100%),
        repeating-radial-gradient(circle at 118% 4%, rgba(110, 231, 183, 0.05) 0 1px, transparent 1px 26px),
        repeating-radial-gradient(circle at -12% 94%, rgba(255, 214, 138, 0.045) 0 1px, transparent 1px 30px);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
/* Desktop mode draws an ID-scoped light border-right — override its color. */
.ws-drawer-host.ho-drawer .ws-drawer-panel {
    border-right-color: rgba(255, 255, 255, 0.06) !important;
}
/* Thin dark scrollbar so the rail reads as one dark surface. */
.ws-drawer-host.ho-drawer .ws-drawer-panel::-webkit-scrollbar { width: 8px; }
.ws-drawer-host.ho-drawer .ws-drawer-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

/* ---- Capture FAB (Atlas): green → hunter orange (the "capture" action) ---- */
.atlas-capture-fab {
    background: linear-gradient(135deg, var(--ho-amber) 0%, var(--ho-orange) 100%) !important;
    box-shadow: 0 8px 18px rgba(242, 107, 31, 0.42), 0 2px 4px rgba(0, 0, 0, 0.10) !important;
}
.atlas-capture-fab:hover {
    box-shadow: 0 12px 24px rgba(242, 107, 31, 0.5), 0 3px 6px rgba(0, 0, 0, 0.12) !important;
}

/* ===================================================================
   UNIFIED COMPONENT KIT
   Shared vocabulary every consumer surface draws from. The goal is a
   warm, cohesive, "field guide" feel — never the cold white-washed SaaS
   look. Brand palette governs chrome + components; heroes & classification
   surfaces may use the sanctioned --acc-* accents for standout/variety.
   =================================================================== */

/* ---- Typography: warm ink instead of pure black/cool slate ---- */
.ho-scope, .ho-page { color: var(--ho-ink); }
.ho-eyebrow {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--ho-pine);
}
.ho-eyebrow--accent { color: var(--acc, var(--ho-orange)); }

/* Section header: an eyebrow + title + optional rule, used to break up the
   long entity/detail pages so they read as chapters, not a white wall. */
.ho-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin: 0 0 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--ho-line);
}
.ho-section-title {
    margin: 0; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em;
    color: var(--ho-ink);
    display: inline-flex; align-items: center; gap: 0.55rem;
}
.ho-section-title > i { color: var(--acc, var(--ho-pine)); }

/* ---- Card: warm surface, soft shadow, accent-aware ---- */
.ho-card {
    background: var(--ho-surface);
    border: 1px solid var(--ho-line);
    border-radius: var(--ho-radius);
    box-shadow: var(--ho-shadow-sm);
    transition: transform 0.14s ease, box-shadow 0.18s ease, border-color 0.14s ease;
}
.ho-card--interactive { cursor: pointer; }
.ho-card--interactive:hover {
    transform: translateY(-2px);
    box-shadow: var(--ho-shadow-md);
    border-color: color-mix(in srgb, var(--acc, var(--ho-pine)) 45%, var(--ho-line));
}
/* A card with a tinted "ranger" header strip in its accent color. */
.ho-card-accent { border-top: 3px solid var(--acc, var(--ho-pine)); }

/* ---- Panel surface: a warm framed block (for content sections) ---- */
.ho-panel {
    background: var(--ho-surface);
    border: 1px solid var(--ho-line);
    border-radius: var(--ho-radius);
    box-shadow: var(--ho-shadow-sm);
    padding: 1.1rem 1.25rem;
}
.ho-panel--tinted {
    background: linear-gradient(180deg, var(--ho-tint) 0%, var(--ho-surface) 60%);
}

/* ---- Chips / pills (filters, tags) ---- */
.ho-chip {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.32rem 0.75rem;
    background: var(--ho-surface);
    border: 1px solid var(--ho-line);
    border-radius: 999px;
    color: var(--ho-ink-soft);
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.14s ease;
}
.ho-chip:hover { border-color: var(--ho-pine); color: var(--ho-forest); background: var(--ho-tint); }
.ho-chip.is-active {
    background: var(--ho-pine); border-color: var(--ho-pine); color: #fff;
    box-shadow: 0 2px 8px rgba(45,106,79,0.28);
}

/* ---- Badges ---- */
.ho-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.18rem 0.6rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
}
.ho-badge--forest { background: var(--ho-tint); color: var(--ho-forest); }
.ho-badge--gold   { background: linear-gradient(135deg,#fde68a,#f59e0b); color:#78350f; }
.ho-badge--accent { background: color-mix(in srgb, var(--acc, var(--ho-orange)) 16%, white); color: color-mix(in srgb, var(--acc, var(--ho-orange)) 70%, black); }

/* ---- Accent button (orange — the disciplined CTA / capture / hero action) ---- */
.ho-btn-accent {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.7rem 1.25rem; border: none; border-radius: 12px;
    background: linear-gradient(135deg, var(--ho-orange) 0%, var(--ho-amber) 100%);
    color: #08152b; font-weight: 800; font-size: 1rem; letter-spacing: 0.01em;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 8px 22px rgba(242,107,31,0.38);
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.ho-btn-accent:hover { transform: translateY(-1px); color:#08152b; box-shadow: 0 12px 30px rgba(242,107,31,0.5); }

/* ---- Hero: rich, expressive header band. Defaults to the dawn gradient;
   per-surface heroes override --acc / background for standout variety. ---- */
.ho-hero {
    position: relative;
    border-radius: 0;               /* square header banners */
    overflow: hidden;
    padding: 2.25rem 2rem;
    color: var(--ho-cream);
    background: var(--ho-header-bg);   /* solid brand header — uniform across the app */
}
.ho-hero > * { position: relative; z-index: 1; }
.ho-hero h1, .ho-hero .ho-hero-title {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 0.5rem;
}
.ho-hero p, .ho-hero .ho-hero-sub { color: rgba(255,247,230,0.9); margin: 0; max-width: 60ch; }

/* ---- Warm up shared Bootstrap surfaces so nothing reads cold/white-washed ---- */
.card {
    border-color: var(--ho-line);
    border-radius: var(--ho-radius-sm);
}
hr { border-color: var(--ho-line); opacity: 1; }

/* Soft, brand-tinted focus ring on inputs everywhere (matches atlas-theme). */
.form-control:focus, .form-select:focus {
    border-color: var(--ho-pine);
    box-shadow: 0 0 0 0.2rem rgba(45,106,79,0.18);
}

/* ===================================================================
   SIDE-PANEL + DIALOG CHROME (Atlas SidebarHost + Syncfusion SfDialog)
   One set of overrides brands the chrome of all ~35 PanelService panels +
   dialogs. The Atlas component ships blue (#0d6efd) header icons / back
   buttons on a cool-gray header; rebrand to warm forest. Color only — no
   layout, no grid internals (Syncfusion grids are fragile). !important is
   needed because the package's inline <style> renders after app.css. */
.sidebar-header {
    background: linear-gradient(180deg, var(--ho-tint) 0%, var(--ho-raised) 100%) !important;
    border-bottom: 1px solid var(--ho-line) !important;
}
.sidebar-header-icon { color: var(--ho-pine) !important; }
.sidebar-header-title { color: var(--ho-ink) !important; }
.sidebar-back-btn { color: var(--ho-pine) !important; }
.sidebar-back-btn:hover { background-color: var(--ho-tint) !important; color: var(--ho-forest) !important; }
.sidebar-action-btn:hover, .sidebar-close-btn:hover { background-color: var(--ho-tint) !important; color: var(--ho-forest) !important; }
.sidebar-action-btn.active { background-color: var(--ho-tint) !important; color: var(--ho-pine) !important; }
.sidebar-action-btn:focus, .sidebar-close-btn:focus, .sidebar-back-btn:focus { outline-color: var(--ho-pine) !important; }

/* Syncfusion dialog (SfDialog) header — warm brand strip, forest title.
   Buttons inside inherit the brand .e-primary rule below. Dialogs are not
   grids, so this is safe. */
.e-dialog .e-dlg-header-content {
    background: linear-gradient(180deg, var(--ho-tint) 0%, var(--ho-surface) 100%);
    border-bottom: 1px solid var(--ho-line);
}
.e-dialog .e-dlg-header, .e-dialog .e-dlg-header * { color: var(--ho-ink); }

/* Syncfusion PRIMARY buttons → brand forest (used in dialogs, pickers, toolbars).
   Scoped to .e-primary so default/flat Syncfusion buttons and grid controls are
   untouched. */
.e-btn.e-primary, .e-css.e-btn.e-primary {
    background-color: var(--ho-pine);
    border-color: var(--ho-pine);
}
.e-btn.e-primary:hover, .e-css.e-btn.e-primary:hover {
    background-color: var(--ho-forest);
    border-color: var(--ho-forest);
}

/* ===================================================================
   AUTH PAGES (Atlas AuthLayout — login / register / forgot, etc.)
   Consumer-only rebrand: the package ships a muddy gray branding panel +
   an oversized logo + cold borders. Override here (app.css loads on auth
   pages) so the Outdoors auth screens carry the brand WITHOUT editing the
   reusable Atlas package. Static CSS — shows on refresh, no restart.
   =================================================================== */
/* SINGLE CENTERED COLUMN over a real outdoors photo: logo badge on top, white
   form card centered below. The package's two-column split looks lopsided once
   the side panel is transparent (logo strands in a corner), so we collapse it to
   one balanced, centered stack. */
.auth-split {
    position: relative;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh;
    padding: 2.5rem 1rem;
    background:
        linear-gradient(160deg, rgba(8,21,43,0.52) 0%, rgba(27,67,50,0.34) 52%, rgba(8,21,43,0.60) 100%),
        url('/images/backgrounds/sitebackgroundold.jpg');
    background-size: cover;
    background-position: center;
}
.auth-split::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse at 50% 115%, rgba(242,107,31,0.26) 0%, transparent 55%);
}
.auth-split > * { position: relative; z-index: 1; }

/* Hide the desktop side panel; reuse the top branding block as the centered logo. */
.auth-branding { display: none !important; }
.auth-branding-mobile {
    display: block !important;
    background: transparent !important;
    backdrop-filter: none !important;
    text-align: center;
    padding: 0 1rem 1.25rem !important;
    width: 100%;
    max-width: 440px;
}
.auth-branding-mobile img {
    height: auto !important;
    max-height: 90px !important;
    max-width: 230px !important;
    margin: 0 auto 0.75rem !important;
    background: #ffffff;
    padding: 0.55rem 0.85rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(8,21,43,0.45);
}
.auth-branding-mobile .brand-name {
    color: #ffffff !important; font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.auth-branding-mobile .brand-tagline {
    color: rgba(255,255,255,0.88) !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Form area — centered, not full-height-stretched (so the card sits in the
   middle of the photo, not glued to the top edge). */
.auth-form-area {
    flex: 0 0 auto !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 1rem !important;
}
/* Form card — clean white, centered, floating on the landscape with a deep lift
   shadow and a thin hunter-orange trail-stripe along the top. */
.auth-container {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.55) !important;
    border-top: 3px solid var(--ho-orange, #f26b1f) !important;
    background: #ffffff !important;
    box-shadow: 0 26px 64px rgba(8,21,43,0.5) !important;
}
.auth-container:not(.wide) { max-width: 430px !important; }
/* "Back to Hang Outdoors" sits on the photo below the card — keep it legible. */
.auth-back-link, .auth-back-link a { color: #ffffff !important; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.auth-container .form-control { border-color: var(--ho-line, #e7e1d4) !important; }
.auth-container h1 { color: var(--ho-ink, #1d2a23) !important; }
.auth-container hr,
.auth-container .auth-footer,
.auth-divider::before, .auth-divider::after { border-color: var(--ho-line, #e7e1d4) !important; }
.auth-container .alert-info { background: var(--ho-tint, #eef4ef) !important; color: var(--ho-forest, #1b4332) !important; }
/* Sign-up call-to-action box on the login page (uses Bootstrap .bg-light = cold). */
.auth-container .signup-cta, .auth-form-area .bg-light {
    background: var(--ho-tint-warm, #fdf4e7) !important;
    border-color: var(--ho-line, #e7e1d4) !important;
}


/* ===================================================================
   HOME PAGE (/) — moved out of Home.razor inline <style> so tweaks are
   pure browser-refresh (no rebuild). All selectors are .ho-* home-scoped.
   =================================================================== */
    /* ===== HERO ===== */
    .ho-hero {
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #1b4332;
        min-height: 600px;
    }
    .ho-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.55) 50%, rgba(6,78,59,0.65) 100%);
    }
    .ho-hero-content {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 3rem 1.5rem;
    }
    @media (min-width: 992px) {
        .ho-hero-content { padding: 4rem 2rem; }
    }

    /* ===== LEFT: Text + Search ===== */
    .ho-hero-left { max-width: 560px; }

    /* ===== Public-beta notice (home) ===== */
    .ho-beta {
        padding: 2.5rem 1.5rem 3rem;
        max-width: 1160px;
        margin: 0 auto;
    }
    .ho-beta-inner {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 2.25rem 2.25rem 2.5rem;
        background: linear-gradient(135deg, #f0fdf4 0%, #fffbeb 100%);
        border: 1px solid #d9f0df;
        border-radius: 20px;
        box-shadow: 0 10px 30px -18px rgba(20, 83, 45, 0.35);
    }
    .ho-beta-icon {
        flex: 0 0 auto;
        width: 58px; height: 58px;
        display: grid; place-items: center;
        font-size: 1.75rem;
        color: #15803d;
        background: #dcfce7;
        border-radius: 15px;
    }
    .ho-beta-body { min-width: 0; flex: 1 1 auto; }
    .ho-beta-head {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-bottom: 0.5rem;
    }
    .ho-beta-pill {
        flex: 0 0 auto;
        padding: 0.22rem 0.7rem;
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #92400e;
        background: #fef3c7;
        border: 1px solid #fcd34d;
        border-radius: 50px;
    }
    .ho-beta-title {
        font-size: 1.55rem;
        font-weight: 800;
        color: #14532d;
        margin: 0;
        line-height: 1.2;
    }
    .ho-beta-text {
        font-size: 1.075rem;
        color: #44403c;
        margin: 0 0 1.5rem;
        line-height: 1.6;
        max-width: 64ch;
    }
    .ho-beta-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .ho-beta-col {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid #e7e1d4;
        border-radius: 14px;
        padding: 1.25rem 1.4rem;
    }
    .ho-beta-col-head {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #57534e;
        margin-bottom: 0.85rem;
        padding-bottom: 0.6rem;
        border-bottom: 1px solid #ece6d9;
    }
    .ho-beta-col-head i { font-size: 1.05rem; color: #a16207; }
    .ho-beta-col-head-trust { color: #166534; }
    .ho-beta-col-head-trust i { color: #15803d; }
    .ho-beta-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .ho-beta-list li {
        position: relative;
        padding-left: 1.3rem;
        font-size: 1rem;
        color: #44403c;
        line-height: 1.5;
    }
    .ho-beta-list li::before {
        content: "";
        position: absolute;
        left: 0; top: 0.6em;
        width: 6px; height: 6px;
        border-radius: 50%;
        background: #16a34a;
    }
    .ho-beta-cta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.45rem;
        margin-top: 1.4rem;
        padding-top: 1.25rem;
        border-top: 1px solid #e7e1d4;
        font-size: 1.05rem;
        color: #44403c;
    }
    .ho-beta-cta i { font-size: 1.15rem; color: #15803d; }
    .ho-beta-cta a { color: #15803d; font-weight: 700; text-decoration: none; }
    .ho-beta-cta a:hover { text-decoration: underline; }
    @media (max-width: 767.98px) {
        .ho-beta { padding: 1.75rem 1rem 2.25rem; }
        .ho-beta-inner { padding: 1.5rem 1.4rem 1.75rem; flex-direction: column; gap: 1.1rem; }
        .ho-beta-cols { grid-template-columns: 1fr; }
        .ho-beta-title { font-size: 1.3rem; }
        .ho-beta-text { font-size: 1rem; margin-bottom: 1.25rem; }
    }

    .ho-brand-band {
        position: relative;
        margin: 0;
        max-width: none;
        padding: 4rem 1.5rem;
        background:
            radial-gradient(ellipse at 80% 20%, rgba(52, 211, 153, 0.18), transparent 55%),
            radial-gradient(ellipse at 15% 80%, rgba(245, 158, 11, 0.10), transparent 55%),
            linear-gradient(135deg, #064e3b 0%, #065f46 50%, #226048 100%);
        color: #ecfdf5;
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
    }
    @media (max-width: 991.98px) {
        .ho-brand-band { padding: 3rem 1.25rem; }
    }
    .ho-brand-band::before {
        content: ""; position: absolute; inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
        pointer-events: none;
    }
    .ho-brand-band-inner {
        position: relative; z-index: 1;
        max-width: 1100px; margin: 0 auto;
        display: flex; flex-direction: column; align-items: center;
        gap: 2rem;
        text-align: center;
    }
    .ho-brand-band-logo {
        background: rgba(255, 255, 255, 0.96);
        padding: 0;
        border-radius: 24px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        line-height: 0;
    }
    .ho-brand-band-logo img {
        max-height: 220px;
        max-width: 100%;
        width: auto;
        height: auto;
        display: block;
    }
    .ho-brand-band-divider {
        display: none;
    }
    .ho-brand-band-copy {
        width: 100%;
        max-width: 880px;
    }
    .ho-brand-band-headline {
        font-size: 1.85rem;
        font-weight: 800;
        line-height: 1.2;
        margin: 0 0 0.75rem;
        color: #ffffff;
    }
    .ho-brand-band-sub {
        font-size: 1.05rem;
        line-height: 1.55;
        color: #d1fae5;
        margin: 0 0 1.5rem;
    }
    .ho-brand-band-pillars {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .ho-brand-band-pillar {
        display: flex; align-items: flex-start; gap: 0.7rem;
        padding: 0.85rem 0.95rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        text-align: left;
    }
    .ho-brand-band-pillar i {
        font-size: 1.25rem;
        color: #6ee7b7;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    .ho-brand-band-pillar strong {
        display: block;
        color: #ffffff;
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    .ho-brand-band-pillar span {
        display: block;
        color: #d1fae5;
        font-size: 0.82rem;
        line-height: 1.4;
    }
    @media (max-width: 991.98px) {
        .ho-brand-band-pillars { grid-template-columns: 1fr; }
    }
    .ho-brand-band-coming-soon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        padding: 0.75rem 1.25rem;
        background: rgba(0, 0, 0, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        font-size: 0.92rem;
        color: #d1fae5;
        line-height: 1.45;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    .ho-brand-band-soon-pill {
        flex-shrink: 0;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: #1c1917;
        padding: 0.15rem 0.6rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        align-self: center;
    }
    @media (max-width: 767.98px) {
        .ho-brand-band { padding: 2.5rem 1rem; }
        .ho-brand-band-inner { flex-direction: column; gap: 1.75rem; text-align: center; }
        .ho-brand-band img { max-height: 140px; }
        .ho-brand-band-divider { display: none; }
        .ho-brand-band-headline { font-size: 1.5rem; }
        .ho-brand-band-sub { font-size: 0.98rem; }
    }

    .ho-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(16,185,129,0.9);
        color: #fff;
        padding: 0.25rem 0.85rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
        backdrop-filter: blur(4px);
    }
    .ho-pulse-dot {
        width: 8px; height: 8px;
        background: #fff;
        border-radius: 50%;
        animation: ho-pulse 1.5s ease-in-out infinite;
    }
    @keyframes ho-pulse {
        0%, 100% { opacity: 0.4; transform: scale(0.8); }
        50% { opacity: 1; transform: scale(1.2); }
    }

    .ho-hero-title {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.15;
        color: #fff;
        margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
        .ho-hero-title { font-size: 3.2rem; }
    }
    .ho-hero-accent { color: #6ee7b7; display: inline-block; }

    .ho-hero-subtitle {
        font-size: 1.12rem;
        color: rgba(255,255,255,0.9);
        margin-top: 0.25rem;
        margin-bottom: 2.4rem;
        line-height: 1.6;
        max-width: 30em;
    }

    /* ===== Search Bar ===== */
    .ho-search-bar {
        position: relative;
    }
    .ho-search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 1.1rem;
    }
    .ho-search-input {
        width: 100%;
        height: 3.5rem;
        padding-left: 3rem;
        padding-right: 1rem;
        font-size: 1.05rem;
        border: 2px solid rgba(255,255,255,0.2);
        border-radius: 12px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(8px);
        outline: none;
        transition: border-color 0.2s;
    }
    .ho-search-input:focus { border-color: #6ee7b7; }
    .ho-search-input::placeholder { color: #94a3b8; }

    .ho-btn-primary {
        background: #2d6a4f;
        color: #fff;
        border: none;
        padding: 0.65rem 1.25rem;
        font-weight: 600;
        border-radius: 10px;
        transition: background 0.15s;
    }
    .ho-btn-primary:hover { background: #226048; color: #fff; }

    .ho-btn-secondary {
        background: #f59e0b;
        color: #1c1917;
        border: none;
        padding: 0.65rem 1.25rem;
        font-weight: 700;
        border-radius: 10px;
        transition: background 0.15s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .ho-btn-secondary:hover { background: #d97706; color: #1c1917; }

    .ho-btn-outline {
        background: #fff;
        color: #1e293b;
        border: 2px solid #e7e1d4;
        padding: 0.65rem 1.25rem;
        font-weight: 600;
        border-radius: 10px;
        transition: background 0.15s;
    }
    .ho-btn-outline:hover { background: #f7f4ec; color: #1e293b; }

    /* ===== Suggestion Chips ===== */
    .ho-suggestions {
        margin-top: 1.35rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
    }
    .ho-suggestions-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255,255,255,0.72);
        margin: 0 0.2rem 0 0;
        white-space: nowrap;
    }
    .ho-chip {
        font-size: 0.83rem;
        padding: 0.35rem 0.9rem;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 50px;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.15s;
        backdrop-filter: blur(4px);
    }
    .ho-chip:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.55); color: #fff; }

    /* ===== RIGHT: Gallery Card ===== */
    .ho-gallery-wrapper { position: relative; }

    .ho-gallery-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.2);
    }
    .ho-gallery-header {
        background: #fff;
        border-bottom: 1px solid #e7e1d4;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .ho-dot {
        width: 8px; height: 8px;
        border-radius: 50px;
        background: #cbd5e1;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.2s;
    }
    .ho-dot.active { background: #10b981; width: 24px; }

    .ho-gallery-image {
        position: relative;
        height: 300px;
        overflow: hidden;
        background: #f1ece2;
    }
    @media (min-width: 576px) {
        .ho-gallery-image { height: 400px; }
    }
    .ho-gallery-image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s ease;
    }

    /* ===== POI Markers ===== */
    .ho-poi {
        position: absolute;
        cursor: pointer;
        z-index: 5;
    }
    .ho-poi-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px; height: 32px;
        background: #10b981;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        font-size: 0.9rem;
        animation: ho-bob 2.5s ease-in-out infinite;
    }
    .ho-poi:nth-child(2) .ho-poi-icon { animation-delay: 0.3s; }
    .ho-poi:nth-child(3) .ho-poi-icon { animation-delay: 0.6s; }
    @keyframes ho-bob {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }
    .ho-poi-label {
        display: none;
        position: absolute;
        top: 36px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        padding: 0.2rem 0.5rem;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        white-space: nowrap;
        font-size: 0.7rem;
        font-weight: 600;
        z-index: 10;
    }
    .ho-poi:hover .ho-poi-label { display: block; }

    /* ===== Info Card Overlay ===== */
    .ho-info-card {
        position: absolute;
        bottom: 0.5rem; left: 0.5rem; right: 0.5rem;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        border-radius: 12px;
        padding: 0.75rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        border: 1px solid rgba(255,255,255,0.5);
        z-index: 8;
    }
    @media (min-width: 576px) {
        .ho-info-card {
            bottom: 1rem; left: 1rem; right: auto;
            width: 280px;
            padding: 1rem;
        }
    }
    .ho-info-icon {
        width: 36px; height: 36px;
        background: #d1fae5;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .ho-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
        border-radius: 4px;
        border: 1px solid;
    }
    .ho-tag-blue { background: #eef4ef; border-color: #bfdbfe; color: #1e40af; }
    .ho-tag-amber { background: #fffbeb; border-color: #fde68a; color: #92400e; }
    .ho-tag-green { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
    .ho-tag-cyan { background: #ecfeff; border-color: #a5f3fc; color: #155e75; }

    /* ===== Facet Cards (Sighting / Trip / Journal) ===== */
    .ho-facet-card {
        position: absolute;
        bottom: 1rem; left: 1rem; right: 1rem;
        max-width: 360px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-radius: 14px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
        padding: 0.85rem 1rem;
        z-index: 5;
        border-left: 4px solid #16a34a;
    }
    .ho-facet-sighting { border-left-color: #d97706; }
    .ho-facet-trip     { border-left-color: #7c3aed; }
    .ho-facet-journal  { border-left-color: #0891b2; }

    .ho-facet-header { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; }
    .ho-facet-header i { font-size: 1.25rem; margin-top: 0.1rem; color: #475569; }
    .ho-facet-sighting .ho-facet-header i { color: #d97706; }
    .ho-facet-trip .ho-facet-header i     { color: #7c3aed; }
    .ho-facet-journal .ho-facet-header i  { color: #0891b2; }

    .ho-facet-list { list-style: none; margin: 0; padding: 0; }
    .ho-facet-list li {
        display: flex; align-items: center; gap: 0.5rem;
        padding: 0.3rem 0;
        font-size: 0.78rem;
        border-bottom: 1px solid #f1ece2;
    }
    .ho-facet-list li:last-child { border-bottom: none; }
    .ho-facet-list li span { font-size: 1.1rem; }
    .ho-facet-list li strong { color: #1e293b; font-weight: 600; }
    .ho-facet-list li em {
        margin-left: auto;
        color: #94a3b8;
        font-style: normal;
        font-size: 0.7rem;
    }

    .ho-facet-cta {
        margin-top: 0.5rem;
        font-size: 0.74rem;
        color: #d97706;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .ho-facet-days { display: flex; gap: 0.4rem; margin-bottom: 0.5rem; }
    .ho-facet-day {
        flex: 1;
        padding: 0.4rem 0.5rem;
        background: #f5f3ff;
        border: 1px solid #ddd6fe;
        border-radius: 8px;
        text-align: center;
    }
    .ho-facet-day .d { display: block; font-weight: 800; color: #7c3aed; font-size: 0.7rem; text-transform: uppercase; }
    .ho-facet-day .t { display: block; font-size: 0.7rem; color: #4c1d95; margin-top: 0.15rem; line-height: 1.2; }

    .ho-facet-pack { font-size: 0.72rem; color: #57534e; display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
    .ho-facet-pack strong { color: #1e293b; }
    .ho-pack-item {
        padding: 0.1rem 0.5rem;
        background: #f3efe6;
        border-radius: 999px;
        color: #78716c;
    }
    .ho-pack-item.done { background: #dcfce7; color: #166534; }

    .ho-facet-quote {
        font-size: 0.82rem;
        color: #1e293b;
        line-height: 1.45;
        font-style: italic;
        border-left: 3px solid #67e8f9;
        padding-left: 0.6rem;
        margin: 0 0 0.55rem;
    }
    .ho-facet-thumbs { display: flex; gap: 0.4rem; }
    .ho-facet-thumb {
        width: 32px; height: 32px;
        background: #ecfeff;
        border: 1px solid #a5f3fc;
        border-radius: 6px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.1rem;
    }
    .ho-facet-thumb-more {
        background: #0891b2;
        color: #ffffff;
        font-size: 0.72rem;
        font-weight: 800;
        border-color: #0891b2;
    }

    /* Sighting pulse markers (alternative to POI labels) */
    .ho-sighting-pulse {
        position: absolute;
        width: 32px; height: 32px;
        border-radius: 50%;
        background: rgba(217, 119, 6, 0.18);
        border: 2px solid #d97706;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.95rem;
        transform: translate(-50%, -50%);
        z-index: 4;
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.5);
        animation: ho-sighting-pulse 2.4s infinite;
    }
    @keyframes ho-sighting-pulse {
        0%   { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.55); }
        70%  { box-shadow: 0 0 0 16px rgba(217, 119, 6, 0); }
        100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
    }

    /* ===== Stat Badges ===== */
    .ho-stat-badges {
        position: absolute;
        top: 1rem; right: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 6;
    }
    .ho-stat-badge {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        padding: 0.4rem 0.75rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.5);
    }

    /* ===== Floating Stats ===== */
    .ho-float-stat {
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 0.75rem 1rem;
        border: 1px solid #e7e1d4;
        z-index: 10;
    }
    .ho-float-bl { bottom: -1rem; left: -0.5rem; }
    .ho-float-tr { top: -1rem; right: -0.5rem; }
    @media (min-width: 576px) {
        .ho-float-bl { bottom: -1.5rem; left: -1.5rem; }
        .ho-float-tr { top: -1.5rem; right: -1.5rem; }
    }

    /* ===== CAPABILITIES SECTION ===== */
    .ho-capabilities { padding: 1.5rem 1.5rem 2rem; background: linear-gradient(to bottom, var(--ho-canvas, #f5f2ea), #fff); }
    .ho-cap-card { overflow: hidden; border-radius: 16px; border: 2px solid #e7e1d4; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: all 0.3s; }
    .ho-cap-card:hover { border-color: #6ee7b7; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
    .ho-cap-card-blue:hover { border-color: #93c5fd; }
    .ho-cap-image { position: relative; height: 192px; overflow: hidden; }
    .ho-cap-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .ho-cap-card:hover .ho-cap-image img { transform: scale(1.05); }
    .ho-cap-image-overlay { position: absolute; inset: 0; }
    .ho-cap-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; background: rgba(255,255,255,0.95); border-radius: 50px; font-size: 0.8rem; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .ho-cap-icon { position: absolute; top: 1rem; left: 1rem; width: 48px; height: 48px; background: rgba(255,255,255,0.95); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .ho-pill { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.35rem 0.75rem; background: #f7f4ec; border: 1px solid #e7e1d4; border-radius: 8px; font-size: 0.8rem; color: #475569; }
    .ho-pill-emerald { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
    .ho-pill-emerald i { color: #2d6a4f; }
    .ho-pill-blue { background: #eef4ef; border-color: #bfdbfe; color: #1e40af; }
    .ho-pill-green { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
    .ho-pill-stone { background: var(--ho-canvas, #f5f2ea); border-color: #d8d0c0; color: #57534e; }
    .ho-pill-orange { background: #fff7ed; border-color: #fed7aa; color: #9a3412; }
    .ho-pill-indigo { background: #eef2ff; border-color: #c7d2fe; color: #3730a3; }
    .ho-pill-amber { background: #fffbeb; border-color: #fde68a; color: #92400e; }
    .ho-pill-purple { background: #faf5ff; border-color: #e9d5ff; color: #6b21a8; }

    /* Small capability cards */
    .ho-cap-card-sm { overflow: hidden; border-radius: 12px; border: 2px solid #e7e1d4; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: all 0.3s; }
    .ho-cap-card-amber:hover { border-color: #fcd34d; box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .ho-cap-card-purple:hover { border-color: #c4b5fd; box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .ho-cap-card-slate:hover { border-color: #94a3b8; box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .ho-cap-image-sm { position: relative; height: 128px; overflow: hidden; }
    .ho-cap-image-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .ho-cap-card-sm:hover .ho-cap-image-sm img { transform: scale(1.05); }
    .ho-cap-icon-sm { position: absolute; top: 0.75rem; left: 0.75rem; width: 40px; height: 40px; background: rgba(255,255,255,0.95); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

    /* ===== ACTIVITIES SECTION ===== */
    .ho-activities { padding: 1.5rem 1.5rem 2rem; background: #f7f4ec; }
    .ho-act-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: #d1fae5; color: #065f46; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; margin-bottom: 1rem; }
    .ho-act-card { overflow: hidden; border-radius: 16px; cursor: pointer; }
    .ho-act-image { position: relative; height: 320px; overflow: hidden; }
    .ho-act-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .ho-act-card:hover .ho-act-image img { transform: scale(1.1); }
    .ho-act-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%); }
    .ho-act-emoji { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
    .ho-act-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
    .ho-act-count { font-size: 0.7rem; background: rgba(255,255,255,0.2); color: #fff; padding: 0.2rem 0.5rem; border-radius: 50px; backdrop-filter: blur(4px); }
    .ho-more-activities { background: #fff; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); padding: 2rem; }
    .ho-extra-act { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; padding: 1rem; border-radius: 12px; background: #f7f4ec; transition: all 0.2s; text-align: center; }
    .ho-extra-act:hover { background: #ecfdf5; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

    /* ===== FEATURED PLACES ===== */
    .ho-featured-places { padding: 1.5rem 1.5rem 2rem; background: #fff; }
    .ho-place-card { overflow: hidden; border-radius: 12px; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: all 0.3s; border: none; }
    .ho-place-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .ho-place-image { position: relative; height: 192px; overflow: hidden; }
    .ho-place-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
    .ho-place-card:hover .ho-place-image img { transform: scale(1.1); }
    .ho-place-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: #10b981; color: #fff; font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.75rem; border-radius: 50px; }
    .ho-place-pin { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(255,255,255,0.9); padding: 0.4rem; border-radius: 8px; color: #475569; }

    /* ===== KNOWLEDGE LIBRARIES ===== */
    .ho-libraries { padding: 1.5rem 1.5rem 2rem; background: linear-gradient(135deg, var(--ho-canvas, #f5f2ea), var(--ho-tint, #eef4ef)); }
    .ho-lib-card { overflow: hidden; border-radius: 12px; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: all 0.3s; border: none; }
    .ho-lib-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
    .ho-lib-image { position: relative; height: 192px; overflow: hidden; }
    .ho-lib-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .ho-lib-card:hover .ho-lib-image img { transform: scale(1.1); }
    .ho-lib-overlay { position: absolute; inset: 0; opacity: 0.4; transition: opacity 0.3s; }
    .ho-lib-card:hover .ho-lib-overlay { opacity: 0.5; }
    .ho-lib-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%); }
    .ho-lib-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 50px; }
    .ho-lib-stats { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 0; max-width: 100%; background: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); padding: 1.25rem 1.5rem; }
    .ho-lib-divider { width: 1px; height: 48px; background: #e7e1d4; margin: 0 0.5rem; }
    @media (max-width: 575px) {
        .ho-lib-divider { display: none; }
        .ho-lib-stats { flex-direction: column; padding: 1rem 1.25rem; }
    }


/* ===================================================================
   CONTRIBUTE CALLOUT (.cc-*) — reusable crowdsourcing empty state.
   Founder framing + how-it-works + payoff. Used by ContributeCallout.razor
   wherever a surface is empty so thin data reads as opportunity.
   =================================================================== */
.cc {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem 1.75rem;
    background:
        radial-gradient(ellipse at 85% -10%, rgba(255, 154, 60, 0.10), transparent 55%),
        radial-gradient(ellipse at 0% 110%, rgba(45, 106, 79, 0.08), transparent 55%),
        var(--ho-surface, #fff);
    border: 1px solid var(--ho-line, #e7e1d4);
    border-radius: var(--ho-radius-lg, 20px);
    box-shadow: var(--ho-shadow-md, 0 10px 24px rgba(0,0,0,0.10));
    text-align: center;
}
.cc-compact { margin: 1rem auto; padding: 1.35rem 1.25rem; }

.cc-spark {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ho-pine, #2d6a4f);
    background: var(--ho-tint, #eef4ef);
    border: 1px solid rgba(45, 106, 79, 0.18);
    padding: 0.25rem 0.7rem; border-radius: 999px;
    margin-bottom: 0.9rem;
}
.cc-title {
    font-size: 1.6rem; font-weight: 800; line-height: 1.2;
    color: var(--ho-ink, #1d2a23); margin: 0 0 0.5rem;
}
.cc-lead {
    font-size: 1.05rem; line-height: 1.55; color: var(--ho-ink-soft, #44524b);
    margin: 0 auto 0.9rem; max-width: 54ch;
}
.cc-together {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.95rem; line-height: 1.45; color: var(--ho-pine, #2d6a4f);
    background: var(--ho-tint, #eef4ef); border-radius: 999px;
    padding: 0.4rem 0.95rem; margin: 0 auto 1.4rem; max-width: 92%;
}
.cc-together > i { font-size: 1rem; flex-shrink: 0; }

.cc-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
    text-align: left; margin-bottom: 1.5rem;
}
@media (max-width: 640px) { .cc-steps { grid-template-columns: 1fr; } }
.cc-step {
    position: relative;
    display: flex; align-items: flex-start; gap: 0.6rem;
    background: var(--ho-raised, #fbf9f4);
    border: 1px solid var(--ho-line-soft, #f0ebe0);
    border-radius: var(--ho-radius-sm, 10px);
    padding: 0.85rem 0.9rem 0.85rem 0.85rem;
}
.cc-step-num {
    position: absolute; top: -8px; left: -8px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--ho-pine, #2d6a4f); color: #fff;
    font-size: 0.72rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 5px rgba(27,67,50,0.25);
}
.cc-step-icon { font-size: 1.15rem; color: var(--ho-pine, #2d6a4f); margin-top: 0.1rem; flex-shrink: 0; }
.cc-step-text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.cc-step-text strong { font-size: 0.96rem; color: var(--ho-ink, #1d2a23); }
.cc-step-text span { font-size: 0.85rem; line-height: 1.4; color: var(--ho-muted, #6b7a72); }

.cc-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 1rem; }
.cc-btn {
    display: inline-flex; align-items: center;
    padding: 0.55rem 1.1rem; border-radius: 999px;
    font-size: 0.9rem; font-weight: 700; text-decoration: none;
    border: 1.5px solid transparent; cursor: pointer;
    transition: background .12s, color .12s, border-color .12s, transform .12s;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-btn-primary { background: var(--ho-pine, #2d6a4f); color: #fff; }
.cc-btn-primary:hover { background: var(--ho-forest, #1b4332); color: #fff; }
.cc-btn-amber { background: var(--ho-amber, #ff9a3c); color: #1c1917; }
.cc-btn-amber:hover { background: var(--ho-orange, #f26b1f); color: #1c1917; }
.cc-btn-ghost { background: transparent; color: var(--ho-pine, #2d6a4f); border-color: var(--ho-line, #e7e1d4); }
.cc-btn-ghost:hover { background: var(--ho-tint, #eef4ef); border-color: var(--ho-pine, #2d6a4f); }

.cc-foot { font-size: 0.8rem; color: var(--ho-muted, #6b7a72); margin: 0; font-style: italic; }

/* ContributeCallout — "trusted member" unlock banner (the payoff loop). */
.cc-unlock {
    display: flex; align-items: center; gap: 0.6rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(255,154,60,0.12), rgba(255,214,138,0.10));
    border: 1px solid rgba(242,107,31,0.28);
    border-radius: var(--ho-radius-sm, 10px);
    padding: 0.7rem 0.95rem; margin: 0 auto 1.25rem; max-width: 600px;
    font-size: 0.86rem; line-height: 1.4; color: var(--ho-ink-soft, #44524b);
}
.cc-unlock > i { font-size: 1.2rem; color: var(--ho-orange, #f26b1f); flex-shrink: 0; }
.cc-unlock strong { color: var(--ho-forest, #1b4332); }

/* Desktop: the card has room — step the type up so it doesn't read small. */
@media (min-width: 768px) {
    .cc { padding: 2.5rem 2.25rem; }
    .cc-title { font-size: 1.95rem; }
    .cc-lead { font-size: 1.15rem; }
    .cc-together { font-size: 1rem; }
    .cc-step-text strong { font-size: 1rem; }
    .cc-step-text span { font-size: 0.9rem; }
    .cc-unlock { font-size: 0.98rem; }
    .cc-btn { font-size: 1rem; padding: 0.62rem 1.3rem; }
    .cc-foot { font-size: 0.85rem; }
}


/* ===================================================================
   HOME — "What's New" momentum feed. Make the catalog feel in motion.
   =================================================================== */
.ho-whatsnew { padding: 3rem 1.5rem; max-width: 1400px; margin: 0 auto; }

.ho-live-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: #16a34a; margin-right: 0.4rem; vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(22,163,74,0.6); animation: ho-livepulse 1.8s infinite;
}
@keyframes ho-livepulse {
    0%   { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* Week / Today toggle */
.ho-range-toggle {
    display: inline-flex; background: #f3efe6; border: 1px solid var(--ho-line, #e7e1d4);
    border-radius: 999px; padding: 3px;
}
.ho-range-toggle button {
    border: none; background: transparent; cursor: pointer;
    font-size: 0.85rem; font-weight: 700; color: var(--ho-ink-soft, #44524b);
    padding: 0.4rem 1rem; border-radius: 999px; transition: background .12s, color .12s;
}
.ho-range-toggle button.is-active {
    background: var(--ho-pine, #2d6a4f); color: #fff;
    box-shadow: 0 2px 6px rgba(27,67,50,0.2);
}

/* Momentum strip: big number + breakdown chips */
.ho-momentum {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(45,106,79,0.07), transparent 60%),
        var(--ho-surface, #fff);
    border: 1px solid var(--ho-line, #e7e1d4);
    border-radius: var(--ho-radius-lg, 20px);
    padding: 1.25rem 1.5rem; margin-bottom: 0.5rem;
}
.ho-momentum-hero { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; padding-right: 1.25rem; border-right: 1px solid var(--ho-line-soft, #f0ebe0); }
.ho-momentum-num { font-size: 2.6rem; font-weight: 900; color: var(--ho-forest, #1b4332); letter-spacing: -0.02em; }
.ho-momentum-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ho-pine, #2d6a4f); margin-top: 0.25rem; }
.ho-momentum-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1 1 auto; }
.ho-momentum-chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ho-tint, #eef4ef); border: 1px solid rgba(45,106,79,0.16);
    color: var(--ho-ink-soft, #44524b); border-radius: 999px;
    padding: 0.35rem 0.8rem; font-size: 0.85rem;
}
.ho-momentum-chip strong { color: var(--ho-forest, #1b4332); font-weight: 800; }
.ho-momentum-chip > i { color: var(--ho-pine, #2d6a4f); }
.ho-momentum-chip-region { background: var(--ho-tint-warm, #fdf4e7); border-color: rgba(242,107,31,0.18); }
.ho-momentum-chip-region > i { color: var(--ho-orange, #f26b1f); }
@media (max-width: 575px) {
    .ho-momentum-hero { padding-right: 0; border-right: none; border-bottom: 1px solid var(--ho-line-soft,#f0ebe0); padding-bottom: 0.75rem; }
    .ho-momentum-num { font-size: 2.1rem; }
}

/* Home "What's new" heading is a link to /whats-new — keep ink color, underline on hover. */
.ho-whatsnew-h { color: var(--ho-ink, #1d2a23); transition: color .12s; }
a:hover .ho-whatsnew-h { color: var(--ho-pine, #2d6a4f); text-decoration: underline; }

/* Home — Choose your activity: data-driven group tiles. */
.ho-act-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.85rem;
}
.ho-act-tile {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem;
    background: var(--ho-surface, #fff); border: 1px solid var(--ho-line, #e7e1d4);
    border-radius: var(--ho-radius, 14px); padding: 1.25rem 0.85rem;
    text-decoration: none; color: var(--ho-ink, #1d2a23);
    transition: border-color .12s, box-shadow .12s, transform .12s;
}
.ho-act-tile:hover { border-color: var(--ho-pine, #2d6a4f); transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(0,0,0,0.2); }
.ho-act-tile-icon { font-size: 1.7rem; color: var(--ho-pine, #2d6a4f); }
.ho-act-tile-name { font-weight: 700; font-size: 1rem; }
.ho-act-tile-count { font-size: 0.76rem; color: var(--ho-muted, #6b7a72); }

/* ===================================================================
   HOME — Your Workspace & Apps. Shows the apps + honest status badges.
   =================================================================== */
.ho-apps { padding: 3rem 1.5rem; background: var(--ho-tint, #eef4ef); }
.ho-apps-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}

/* ===== Mobile apps coming Fall 2026 ===== */
.ho-mobile {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #14532d 0%, #226048 55%, #2d6a4f 100%);
    color: #fff;
}
.ho-mobile-glow {
    position: absolute;
    top: -40%; right: -10%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(253, 230, 138, 0.22) 0%, transparent 70%);
    pointer-events: none;
}
.ho-mobile-text { position: relative; flex: 1 1 320px; min-width: 0; }
.ho-mobile-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78350f;
    background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
    border-radius: 50px;
    margin-bottom: 0.6rem;
}
.ho-mobile-title { font-size: 1.5rem; font-weight: 800; margin: 0 0 0.35rem; color: #fff; }
.ho-mobile-sub { font-size: 0.96rem; line-height: 1.5; margin: 0; color: rgba(255, 255, 255, 0.86); max-width: 540px; }
.ho-mobile-badges { position: relative; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.ho-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: default;
}
.ho-store-badge i { font-size: 1.7rem; line-height: 1; }
.ho-store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ho-store-badge small { font-size: 0.62rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.03em; }
.ho-store-badge strong { font-size: 1.05rem; font-weight: 700; }
@media (max-width: 575.98px) {
    .ho-mobile { padding: 1.4rem 1.25rem; }
    .ho-mobile-title { font-size: 1.25rem; }
    .ho-store-badge { flex: 1 1 100%; }
}
.ho-app-card {
    display: flex; gap: 0.9rem; align-items: flex-start;
    background: var(--ho-surface, #fff); border: 1px solid var(--ho-line, #e7e1d4);
    border-radius: var(--ho-radius, 14px); padding: 1.1rem 1.15rem;
    text-decoration: none; color: var(--ho-ink, #1d2a23);
    transition: border-color .12s, box-shadow .12s, transform .12s;
}
.ho-app-card:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(0,0,0,0.22); border-color: var(--ho-pine, #2d6a4f); }
.ho-app-card.is-soon { opacity: 0.85; }
.ho-app-card.is-soon:hover { border-color: var(--ho-orange, #f26b1f); }
.ho-app-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    background: var(--ac, #2d6a4f);
}
.ho-app-body { min-width: 0; }
.ho-app-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.2rem; flex-wrap: wrap; }
.ho-app-top h3 { font-size: 1.05rem; font-weight: 700; margin: 0; color: var(--ho-ink, #1d2a23); }
.ho-app-body p { font-size: 0.85rem; color: var(--ho-ink-soft, #44524b); margin: 0; line-height: 1.4; }

/* Status badges — Live / New / Coming soon. Honest signaling, reusable. */
.ho-status {
    font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
    padding: 0.12rem 0.5rem; border-radius: 999px; white-space: nowrap;
}
.ho-status-live { background: #dcfce7; color: #166534; }
.ho-status-new  { background: linear-gradient(135deg, #fde68a, #f59e0b); color: #78350f; }
.ho-status-soon { background: #e7e1d4; color: #57534e; }

/* ===================================================================
   HOME — Join band (logged-out only). Contribute + Apps + Partners.
   =================================================================== */
.ho-join {
    margin: 3rem auto; max-width: 1280px; padding: 3rem 2.5rem;
    border-radius: 28px; color: #ecfdf5; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(52,211,153,0.18), transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(245,158,11,0.12), transparent 55%),
        linear-gradient(135deg, #064e3b 0%, #065f46 50%, #226048 100%);
    box-shadow: 0 18px 40px rgba(15,23,42,0.18);
}
@media (max-width: 991.98px) { .ho-join { margin: 1.5rem 1rem; padding: 2rem 1.25rem; border-radius: 20px; } }
.ho-join-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.ho-join-head { text-align: center; margin-bottom: 1.75rem; }
.ho-join-eyebrow {
    display: inline-flex; align-items: center; font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.09em; text-transform: uppercase; color: var(--ho-gold, #ffd68a); margin-bottom: 0.4rem;
}
.ho-join-head h2 { font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 0.4rem; }
.ho-join-head p { color: #d1fae5; font-size: 1.02rem; margin: 0 auto; max-width: 620px; }
.ho-join-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
@media (max-width: 767.98px) { .ho-join-cols { grid-template-columns: 1fr; } }
.ho-join-col {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 1.1rem 1.15rem;
}
.ho-join-col-icon { font-size: 1.4rem; color: #6ee7b7; margin-bottom: 0.4rem; }
.ho-join-col h3 { font-size: 1.02rem; font-weight: 700; color: #fff; margin: 0 0 0.6rem; }
.ho-join-col ul { list-style: none; padding: 0; margin: 0; }
.ho-join-col li {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.9rem; color: #d1fae5; padding: 0.28rem 0; line-height: 1.35;
}
.ho-join-col li::before { content: "\2713"; color: #6ee7b7; font-weight: 800; font-size: 0.8rem; }
.ho-join-col li .ho-status { margin-right: 0.1rem; }
.ho-join-col li .ho-status + * { } /* spacing handled by gap */
.ho-join-actions { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.ho-join-cta {
    background: linear-gradient(135deg, var(--ho-amber, #ff9a3c), var(--ho-orange, #f26b1f));
    color: #1c1917; font-weight: 800; border: none; border-radius: 999px;
    padding: 0.7rem 1.8rem; font-size: 1.02rem; box-shadow: 0 6px 16px rgba(242,107,31,0.35);
    transition: transform .12s, box-shadow .12s;
}
.ho-join-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(242,107,31,0.45); color: #1c1917; }
.ho-join-signin { background: none; border: none; color: #d1fae5; text-decoration: underline; cursor: pointer; font-size: 0.9rem; }
.ho-join-signin:hover { color: #fff; }

/* "Soon" rows in the join band carry a badge, not a checkmark. */
.ho-join-col li:has(.ho-status)::before { content: none; }
