/* ═══════════════════════════════════════════════════════════════
   AQUIKS TOOLS HUB — hub.css
   Theme: Deep Navy (#0a0e1a) + Electric Cyan accent
   Fonts: Outfit (display) + DM Sans (body)
   Matches aquiks.co.uk dark professional aesthetic
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
#ath-hub {
    --ath-bg:           #07091a;
    --ath-bg-2:         #0d1130;
    --ath-bg-card:      #0f1628;
    --ath-bg-card-2:    #131c38;
    --ath-border:       rgba(255,255,255,0.07);
    --ath-border-hover: rgba(0,212,255,0.35);
    --ath-cyan:         #00d4ff;
    --ath-cyan-dim:     rgba(0,212,255,0.12);
    --ath-cyan-glow:    rgba(0,212,255,0.2);
    --ath-teal:         #00b4d8;
    --ath-green:        #22c55e;
    --ath-white:        #eef2ff;
    --ath-muted:        #8892b0;
    --ath-muted-2:      #4a5568;
    --ath-radius:       12px;
    --ath-radius-lg:    20px;
    --ath-shadow:       0 4px 30px rgba(0,0,0,0.5);
    --ath-glow:         0 0 40px rgba(0,212,255,0.1);
    --ath-font-head:    'Outfit', system-ui, sans-serif;
    --ath-font-body:    'DM Sans', system-ui, sans-serif;
    --ath-ease:         cubic-bezier(.4,0,.2,1);
    --ath-dur:          0.22s;
}

/* ── Reset ──────────────────────────────────────────────────── */
#ath-hub *,
#ath-hub *::before,
#ath-hub *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#ath-hub {
    font-family: var(--ath-font-body);
    background: var(--ath-bg);
    color: var(--ath-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Container ──────────────────────────────────────────────── */
#ath-hub .ath-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Base ───────────────────────────────────────────── */
#ath-hub .ath-section {
    padding: 80px 0;
}

#ath-hub .ath-section__header {
    text-align: center;
    margin-bottom: 52px;
}

#ath-hub .ath-section__eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ath-cyan);
    margin-bottom: 12px;
}

#ath-hub .ath-section__title {
    font-family: var(--ath-font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

#ath-hub .ath-section__sub {
    font-size: 1.05rem;
    color: var(--ath-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ═══════════ HERO ═══════════════════════════════════════════ */
#ath-hub .ath-hero {
    position: relative;
    background: linear-gradient(170deg, #050816 0%, #080f28 55%, #0d1535 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

/* Grid background */
#ath-hub .ath-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* Radial glow */
#ath-hub .ath-hero__glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0,212,255,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Breadcrumb */
#ath-hub .ath-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--ath-muted);
    margin-bottom: 44px;
}
#ath-hub .ath-breadcrumb a {
    color: var(--ath-muted);
    text-decoration: none;
    transition: color var(--ath-dur) var(--ath-ease);
}
#ath-hub .ath-breadcrumb a:hover { color: var(--ath-cyan); }

/* Hero copy */
#ath-hub .ath-hero__copy {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px;
}

/* Pill badge */
#ath-hub .ath-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ath-cyan);
    margin-bottom: 24px;
}

#ath-hub .ath-pill-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ath-cyan);
    animation: ath-pulse 2s ease infinite;
}

@keyframes ath-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.3); }
}

/* H1 */
#ath-hub .ath-hero__h1 {
    font-family: var(--ath-font-head);
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 20px;
}

#ath-hub .ath-hero__h1-accent {
    background: linear-gradient(120deg, var(--ath-cyan) 20%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#ath-hub .ath-hero__sub {
    font-size: 1.15rem;
    color: var(--ath-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}
#ath-hub .ath-hero__sub strong { color: var(--ath-white); }

/* Trust badges */
#ath-hub .ath-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#ath-hub .ath-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--ath-muted);
    transition: all var(--ath-dur) var(--ath-ease);
}
#ath-hub .ath-trust-badge:hover {
    border-color: rgba(0,212,255,0.3);
    color: var(--ath-white);
}

/* ── SEARCH ─────────────────────────────────────────────────── */
#ath-hub .ath-search-wrap {
    position: relative;
    max-width: 680px;
    margin: 0 auto 36px;
}

#ath-hub .ath-search-box {
    display: flex;
    align-items: center;
    background: var(--ath-bg-card);
    border: 1.5px solid var(--ath-border);
    border-radius: var(--ath-radius-lg);
    padding: 0 20px;
    transition: border-color var(--ath-dur) var(--ath-ease), box-shadow var(--ath-dur) var(--ath-ease);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

#ath-hub .ath-search-box:focus-within {
    border-color: var(--ath-cyan);
    box-shadow: 0 0 0 3px var(--ath-cyan-dim), 0 4px 24px rgba(0,0,0,0.35);
}

#ath-hub .ath-search-box__icon {
    color: var(--ath-muted);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

#ath-hub .ath-search-box__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--ath-font-body);
    font-size: 1rem;
    color: var(--ath-white);
    padding: 18px 14px;
    caret-color: var(--ath-cyan);
}
#ath-hub .ath-search-box__input::placeholder { color: var(--ath-muted-2); }

#ath-hub .ath-search-box__clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ath-muted);
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all var(--ath-dur) var(--ath-ease);
}
#ath-hub .ath-search-box__clear:hover { color: var(--ath-white); background: rgba(255,255,255,0.06); }

/* Search results dropdown */
#ath-hub .ath-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--ath-bg-card-2);
    border: 1px solid var(--ath-border);
    border-radius: var(--ath-radius);
    box-shadow: var(--ath-shadow);
    z-index: 100;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

#ath-hub .ath-search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    text-decoration: none;
    color: var(--ath-white);
    border-bottom: 1px solid var(--ath-border);
    transition: background var(--ath-dur);
}
#ath-hub .ath-search-result-item:last-child { border-bottom: none; }
#ath-hub .ath-search-result-item:hover,
#ath-hub .ath-search-result-item:focus { background: var(--ath-cyan-dim); outline: none; }

#ath-hub .ath-search-result-item__icon { font-size: 1.4rem; flex-shrink: 0; }
#ath-hub .ath-search-result-item__info strong { display: block; font-size: 0.92rem; font-weight: 600; }
#ath-hub .ath-search-result-item__info small { color: var(--ath-muted); font-size: 0.8rem; }
#ath-hub .ath-search-result-item__status {
    margin-left: auto;
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(0,212,255,0.1);
    color: var(--ath-cyan);
    border: 1px solid rgba(0,212,255,0.2);
    flex-shrink: 0;
    white-space: nowrap;
}
#ath-hub .ath-search-result-item__status--soon { background: rgba(255,255,255,0.05); color: var(--ath-muted); border-color: var(--ath-border); }

#ath-hub .ath-search-no-results {
    padding: 24px 18px;
    text-align: center;
    color: var(--ath-muted);
    font-size: 0.9rem;
}

/* ── Category nav ───────────────────────────────────────────── */
#ath-hub .ath-cat-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

#ath-hub .ath-cat-nav__btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ath-border);
    border-radius: 100px;
    padding: 8px 18px;
    font-family: var(--ath-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ath-muted);
    cursor: pointer;
    transition: all var(--ath-dur) var(--ath-ease);
    white-space: nowrap;
}
#ath-hub .ath-cat-nav__btn:hover {
    border-color: rgba(0,212,255,0.35);
    color: var(--ath-white);
}
#ath-hub .ath-cat-nav__btn--active {
    background: var(--ath-cyan-dim);
    border-color: var(--ath-cyan);
    color: var(--ath-cyan);
}

/* ═══════════ AD SLOTS ═══════════════════════════════════════ */
#ath-hub .ath-ad-slot {
    min-height: 90px;
    background: rgba(255,255,255,0.015);
    border-top: 1px solid var(--ath-border);
    border-bottom: 1px solid var(--ath-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ath-muted-2);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
#ath-hub .ath-ad-slot--leaderboard { min-height: 90px; }
#ath-hub .ath-ad-slot--inline { min-height: 60px; }

/* ═══════════ TOOLS GRID ═══════════════════════════════════════ */
#ath-hub .ath-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

#ath-hub .ath-tools-grid--popular {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ── Tool Card ──────────────────────────────────────────────── */
#ath-hub .ath-tool-card {
    position: relative;
    background: var(--ath-bg-card);
    border: 1px solid var(--ath-border);
    border-radius: var(--ath-radius);
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--ath-dur) var(--ath-ease);
    overflow: hidden;
}

#ath-hub .ath-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cat-color, var(--ath-cyan)), transparent);
    opacity: 0;
    transition: opacity var(--ath-dur) var(--ath-ease);
}

#ath-hub .ath-tool-card:hover {
    border-color: var(--ath-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.4), var(--ath-glow);
}

#ath-hub .ath-tool-card:hover::before { opacity: 1; }

#ath-hub .ath-tool-card--soon {
    opacity: 0.72;
}
#ath-hub .ath-tool-card--soon:hover {
    transform: translateY(-3px);
    border-color: var(--ath-border);
    box-shadow: none;
}

/* Badge */
#ath-hub .ath-tool-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 100px;
    background: var(--ath-cyan-dim);
    border: 1px solid rgba(0,212,255,0.3);
    color: var(--ath-cyan);
}

/* Icon */
#ath-hub .ath-tool-card__icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 4px;
}

#ath-hub .ath-tool-card__name {
    font-family: var(--ath-font-head);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

#ath-hub .ath-tool-card__desc {
    font-size: 0.865rem;
    color: var(--ath-muted);
    line-height: 1.6;
    flex: 1;
}

#ath-hub .ath-tool-card__privacy {
    font-size: 0.73rem;
    color: #4ade80;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
    margin-top: 4px;
}

/* ── Buttons ────────────────────────────────────────────────── */
#ath-hub .ath-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ath-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--ath-radius);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--ath-dur) var(--ath-ease);
    padding: 11px 18px;
    white-space: nowrap;
    margin-top: auto;
}

#ath-hub .ath-btn--card {
    background: var(--ath-cyan-dim);
    border: 1px solid rgba(0,212,255,0.25);
    color: var(--ath-cyan);
    width: 100%;
}
#ath-hub .ath-btn--card:hover {
    background: var(--ath-cyan);
    color: var(--ath-bg);
    border-color: var(--ath-cyan);
}

#ath-hub .ath-btn--soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ath-border);
    color: var(--ath-muted-2);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--ath-radius);
    width: 100%;
    margin-top: auto;
    cursor: default;
}

#ath-hub .ath-btn--cta {
    background: linear-gradient(135deg, var(--ath-cyan), #4f46e5);
    color: #fff;
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 100px;
    box-shadow: 0 6px 30px rgba(0,212,255,0.25);
    width: 100%;
    font-family: var(--ath-font-head);
    font-weight: 700;
}
#ath-hub .ath-btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,212,255,0.35);
}

/* ═══════════ POPULAR SECTION ═══════════════════════════════ */
#ath-hub .ath-popular {
    background: linear-gradient(180deg, var(--ath-bg) 0%, var(--ath-bg-2) 100%);
}

/* ═══════════ CATEGORY SECTIONS ═══════════════════════════════ */
#ath-hub .ath-cat-section { background: var(--ath-bg); }
#ath-hub .ath-cat-section:nth-child(even) { background: var(--ath-bg-2); }

#ath-hub .ath-cat-section__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

#ath-hub .ath-cat-section__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--cat-color) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--cat-color) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 4px;
}

#ath-hub .ath-cat-section__title {
    font-family: var(--ath-font-head);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

#ath-hub .ath-cat-section__desc {
    font-size: 0.92rem;
    color: var(--ath-muted);
    line-height: 1.6;
    max-width: 640px;
}

/* ═══════════ PRIVACY SECTION ═══════════════════════════════════ */
#ath-hub .ath-privacy-section {
    background: linear-gradient(135deg, #04061a 0%, #0a1028 100%);
    border-top: 1px solid var(--ath-border);
    border-bottom: 1px solid var(--ath-border);
}

#ath-hub .ath-privacy-section__inner {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: rgba(0,212,255,0.03);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: var(--ath-radius-lg);
    padding: 48px 44px;
}

#ath-hub .ath-privacy-section__icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

#ath-hub .ath-privacy-section__title {
    font-family: var(--ath-font-head);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

#ath-hub .ath-privacy-section__body {
    color: var(--ath-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
#ath-hub .ath-privacy-section__body strong { color: var(--ath-white); }

#ath-hub .ath-privacy-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#ath-hub .ath-privacy-pillar {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
#ath-hub .ath-privacy-pillar > span { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
#ath-hub .ath-privacy-pillar strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
#ath-hub .ath-privacy-pillar p { font-size: 0.83rem; color: var(--ath-muted); line-height: 1.55; }

/* ═══════════ WHY SECTION ═══════════════════════════════════════ */
#ath-hub .ath-why {
    background: var(--ath-bg-2);
}

#ath-hub .ath-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

#ath-hub .ath-why__card {
    background: var(--ath-bg-card);
    border: 1px solid var(--ath-border);
    border-radius: var(--ath-radius);
    padding: 28px 24px;
    transition: all var(--ath-dur) var(--ath-ease);
}
#ath-hub .ath-why__card:hover {
    border-color: rgba(0,212,255,0.25);
    transform: translateY(-3px);
}

#ath-hub .ath-why__icon { font-size: 2rem; margin-bottom: 14px; display: block; }
#ath-hub .ath-why__title {
    font-family: var(--ath-font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
#ath-hub .ath-why__desc { font-size: 0.875rem; color: var(--ath-muted); line-height: 1.65; }

/* ═══════════ SEO LINKS ════════════════════════════════════════ */
#ath-hub .ath-seo-links {
    background: var(--ath-bg);
    border-top: 1px solid var(--ath-border);
}

#ath-hub .ath-seo-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

#ath-hub .ath-seo-link-block__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ath-border);
}

#ath-hub .ath-seo-link-block__icon { font-size: 1.3rem; }

#ath-hub .ath-seo-link-block__cat {
    font-family: var(--ath-font-head);
    font-size: 0.95rem;
    font-weight: 700;
}

#ath-hub .ath-seo-link-block__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#ath-hub .ath-seo-link {
    font-size: 0.875rem;
    color: var(--ath-muted);
    text-decoration: none;
    transition: color var(--ath-dur);
    display: block;
    padding: 2px 0;
}
#ath-hub a.ath-seo-link:hover { color: var(--ath-cyan); }
#ath-hub .ath-seo-link--soon small {
    color: var(--ath-muted-2);
    font-size: 0.72rem;
}

/* ═══════════ EMAIL CTA ════════════════════════════════════════ */
#ath-hub .ath-cta-section {
    background: linear-gradient(160deg, #060a1e 0%, #0d1535 100%);
    border-top: 1px solid var(--ath-border);
}

#ath-hub .ath-cta-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

#ath-hub .ath-cta-section__title {
    font-family: var(--ath-font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

#ath-hub .ath-cta-section__sub {
    font-size: 1rem;
    color: var(--ath-muted);
    margin-bottom: 24px;
    line-height: 1.65;
}

#ath-hub .ath-cta-section__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#ath-hub .ath-cta-section__bullets li {
    font-size: 0.9rem;
    color: var(--ath-muted);
}

#ath-hub .ath-email-form {
    background: var(--ath-bg-card);
    border: 1px solid var(--ath-border);
    border-radius: var(--ath-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#ath-hub .ath-email-form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ath-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#ath-hub .ath-email-form__input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid var(--ath-border);
    border-radius: var(--ath-radius);
    padding: 14px 16px;
    font-family: var(--ath-font-body);
    font-size: 1rem;
    color: var(--ath-white);
    outline: none;
    transition: border-color var(--ath-dur);
    caret-color: var(--ath-cyan);
}
#ath-hub .ath-email-form__input:focus { border-color: var(--ath-cyan); }
#ath-hub .ath-email-form__input::placeholder { color: var(--ath-muted-2); }

#ath-hub .ath-email-form__hint { font-size: 0.8rem; color: var(--ath-muted-2); }

#ath-hub .ath-email-form__success {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--ath-radius);
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #4ade80;
}

#ath-hub .ath-cta-section__privacy-note {
    font-size: 0.8rem;
    color: var(--ath-muted-2);
    text-align: center;
    margin-top: 8px;
}

/* ═══════════ PRIVACY STRIP ════════════════════════════════════ */
#ath-hub .ath-privacy-strip {
    background: rgba(0,212,255,0.04);
    border-top: 1px solid rgba(0,212,255,0.1);
    padding: 18px 0;
}

#ath-hub .ath-privacy-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    font-size: 0.82rem;
    color: var(--ath-muted);
}
#ath-hub .ath-privacy-strip__inner strong { color: var(--ath-white); }

/* ── Hidden (filtered) ──────────────────────────────────────── */
#ath-hub .ath-hidden { display: none !important; }

/* ═══════════ ANIMATIONS ════════════════════════════════════════ */
@keyframes ath-fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

#ath-hub .ath-hero__copy   { animation: ath-fadeUp 0.55s var(--ath-ease) both; }
#ath-hub .ath-search-wrap  { animation: ath-fadeUp 0.55s var(--ath-ease) 0.1s both; }
#ath-hub .ath-trust-badges { animation: ath-fadeUp 0.55s var(--ath-ease) 0.08s both; }
#ath-hub .ath-cat-nav      { animation: ath-fadeUp 0.55s var(--ath-ease) 0.15s both; }

/* ═══════════ RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 960px) {
    #ath-hub .ath-cta-section__inner    { grid-template-columns: 1fr; gap: 40px; }
    #ath-hub .ath-privacy-section__inner { flex-direction: column; padding: 32px 24px; }
    #ath-hub .ath-privacy-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    #ath-hub .ath-section   { padding: 56px 0; }
    #ath-hub .ath-hero      { padding: 60px 0 80px; }
    #ath-hub .ath-cat-section__header { flex-direction: column; gap: 14px; }
    #ath-hub .ath-tools-grid { grid-template-columns: 1fr; }
    #ath-hub .ath-tools-grid--popular { grid-template-columns: 1fr; }
    #ath-hub .ath-seo-links__grid { grid-template-columns: repeat(2, 1fr); }
    #ath-hub .ath-privacy-strip__inner span:not(:first-child):not([aria-hidden]) { display: none; }
    #ath-hub .ath-hero__h1 { font-size: 2.2rem; }
}

@media (max-width: 380px) {
    #ath-hub .ath-seo-links__grid { grid-template-columns: 1fr; }
}
