/* HypnoTrix Core — homepage only. All selectors are deliberately scoped. */
body.hypnotrix-home-page {
    background: #080A12;
}

body.hypnotrix-home-page #masthead,
body.hypnotrix-home-page .site-header,
body.hypnotrix-home-page #colophon,
body.hypnotrix-home-page .site-footer,
body.hypnotrix-home-page .entry-header,
body.hypnotrix-home-page .entry-title {
    display: none !important;
}

body.hypnotrix-home-page .site-content,
body.hypnotrix-home-page .site-content > .ast-container,
body.hypnotrix-home-page .ast-container,
body.hypnotrix-home-page .site-main,
body.hypnotrix-home-page .entry-content,
body.hypnotrix-home-page article.page,
body.hypnotrix-home-page .content-area {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.htrx-wrap,
.htrx-wrap * {
    box-sizing: border-box;
}

.htrx-wrap {
    --htrx-bg: #080A12;
    --htrx-bg2: #0B0B12;
    --htrx-violet: #A855F7;
    --htrx-violet2: #8B5CF6;
    --htrx-purple: #D946EF;
    --htrx-cyan: #22D3EE;
    --htrx-blue: #38BDF8;
    --htrx-white: #F8FAFC;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100vw;
    max-width: none;
    min-height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: env(safe-area-inset-top) 14px calc(28px + env(safe-area-inset-bottom));
    color: var(--htrx-white);
    background:
        radial-gradient(circle at 12% 14%, rgba(139,92,246,.23), transparent 26%),
        radial-gradient(circle at 88% 30%, rgba(34,211,238,.13), transparent 28%),
        radial-gradient(circle at 50% 54%, rgba(217,70,239,.08), transparent 35%),
        linear-gradient(180deg, #090A14 0%, #06070d 60%, #05060b 100%);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.25;
    text-align: center;
}

.htrx-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .45;
    background:
        repeating-linear-gradient(115deg, transparent 0 38px, rgba(255,255,255,.015) 39px 40px),
        radial-gradient(ellipse at center top, rgba(99,102,241,.15), transparent 52%);
    pointer-events: none;
}

.htrx-shell {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.htrx-atmosphere {
    position: absolute;
    z-index: -1;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(55px);
    opacity: .16;
    pointer-events: none;
    animation: htrx-drift 12s ease-in-out infinite alternate;
}

.htrx-atmosphere-one {
    left: -160px;
    top: 80px;
    background: var(--htrx-violet);
}

.htrx-atmosphere-two {
    right: -170px;
    top: 280px;
    background: var(--htrx-cyan);
    animation-delay: -5s;
}

.htrx-hero {
    position: relative;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-top: -2px;
    overflow: hidden;
}

.htrx-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #080A12 0%, transparent 12%, transparent 88%, #080A12 100%),
        linear-gradient(180deg, transparent 58%, #080A12 98%);
    pointer-events: none;
}

.htrx-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 2.2 / 1;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.04);
}

.htrx-headline-block {
    position: relative;
    z-index: 3;
    margin-top: -10px;
    padding: 0 4px;
    text-transform: uppercase;
    font-family: Impact, Arial Black, Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: .01em;
    line-height: .88;
    text-shadow: 0 4px 15px rgba(0,0,0,.85);
}

.htrx-headline-top,
.htrx-headline-bottom {
    color: #fff;
    font-size: clamp(37px, 10.6vw, 72px);
}

.htrx-headline-focus {
    margin: 5px 0 7px;
    font-size: clamp(42px, 12vw, 82px);
    font-style: italic;
    background: linear-gradient(90deg, #d946ef 0%, #f05cff 48%, #d946ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(217,70,239,.18));
}

.htrx-supporting {
    margin: 16px auto 18px !important;
    padding: 0 !important;
    color: rgba(248,250,252,.94);
    font-size: clamp(18px, 4.9vw, 27px);
    font-weight: 400;
    line-height: 1.22;
}

.htrx-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.htrx-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 154px;
    margin: 0;
    padding: 13px 10px 14px;
    overflow: hidden;
    border: 2px solid;
    border-radius: 14px;
    color: #fff;
    background: rgba(11,11,25,.72);
    box-shadow: inset 0 0 22px rgba(255,255,255,.015);
    font: inherit;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.htrx-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    pointer-events: none;
}

.htrx-tone-violet {
    border-color: #d946ef;
    box-shadow: 0 0 15px rgba(217,70,239,.24), inset 0 0 24px rgba(168,85,247,.08);
}
.htrx-tone-violet::before {
    background: radial-gradient(circle at 50% 35%, rgba(217,70,239,.34), transparent 66%);
}
.htrx-tone-cyan {
    border-color: #22d3ee;
    box-shadow: 0 0 15px rgba(34,211,238,.22), inset 0 0 24px rgba(34,211,238,.07);
}
.htrx-tone-cyan::before {
    background: radial-gradient(circle at 50% 35%, rgba(34,211,238,.29), transparent 66%);
}

.htrx-category-card.is-selected {
    background: rgba(20,18,42,.92);
    transform: translateY(-1px);
}
.htrx-tone-violet.is-selected { box-shadow: 0 0 24px rgba(217,70,239,.52), inset 0 0 30px rgba(168,85,247,.17); }
.htrx-tone-cyan.is-selected { box-shadow: 0 0 24px rgba(34,211,238,.48), inset 0 0 30px rgba(34,211,238,.16); }

.htrx-card-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 7px;
}

.htrx-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.htrx-tone-violet .htrx-card-icon {
    color: #f05cff;
    filter: drop-shadow(0 0 7px rgba(217,70,239,.7));
}
.htrx-tone-cyan .htrx-card-icon {
    color: #33ddff;
    filter: drop-shadow(0 0 7px rgba(34,211,238,.7));
}

.htrx-card-title,
.htrx-card-description {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.htrx-card-title {
    color: #fff;
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 4.1vw, 21px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.htrx-card-description {
    margin-top: 5px;
    color: rgba(248,250,252,.90);
    font-size: clamp(12px, 3.45vw, 17px);
    font-weight: 400;
    line-height: 1.08;
}

.htrx-main-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 92px;
    margin: 23px auto 0;
    padding: 15px 58px 15px 28px;
    overflow: hidden;
    border: 4px solid transparent;
    border-radius: 999px;
    color: #fff !important;
    background:
        linear-gradient(#090a14,#090a14) padding-box,
        linear-gradient(90deg,#f05cff 0%,#8b5cf6 48%,#22d3ee 100%) border-box;
    box-shadow: 0 0 16px rgba(217,70,239,.58), 0 0 18px rgba(34,211,238,.42), inset 0 0 30px rgba(34,211,238,.08);
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 7vw, 38px);
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease;
    animation: htrx-breathe 3.8s ease-in-out infinite;
}

.htrx-main-cta::before {
    content: "";
    position: absolute;
    top: -65%;
    left: -30%;
    width: 24%;
    height: 230%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    animation: htrx-sheen 5.8s ease-in-out infinite;
    pointer-events: none;
}

.htrx-cta-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-53%);
    color: #42e8ff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: .8;
    text-shadow: 0 0 11px rgba(34,211,238,.7);
}

.htrx-microcopy {
    margin-top: 21px;
    color: rgba(248,250,252,.88);
    font-size: clamp(14px, 3.7vw, 18px);
    letter-spacing: .19em;
}

.htrx-safety-line {
    margin-top: 22px;
    color: rgba(226,232,240,.73);
    font-size: clamp(10px, 2.8vw, 13px);
    letter-spacing: .22em;
}

.htrx-pro-footer {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 34px auto 0;
    padding: 28px 0 4px;
    border-top: 1px solid rgba(148,163,184,.15);
}

.htrx-pro-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -1px;
    width: 62%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(217,70,239,.82), rgba(34,211,238,.82), transparent);
    box-shadow: 0 0 16px rgba(168,85,247,.35), 0 0 16px rgba(34,211,238,.25);
}

.htrx-pro-eyebrow {
    color: #aeb8ca;
    font-size: clamp(10px, 2.7vw, 12px);
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.htrx-pro-heading {
    margin-top: 7px;
    color: #fff;
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: clamp(25px, 7vw, 36px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(168,85,247,.18);
}

.htrx-pro-intro {
    max-width: 560px;
    margin: 10px auto 18px !important;
    padding: 0 7px !important;
    color: rgba(226,232,240,.82);
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.38;
}

.htrx-pro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.htrx-pro-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 20px 18px 18px;
    overflow: hidden;
    border: 1px solid;
    border-radius: 18px;
    color: #fff !important;
    background: rgba(9,10,20,.84);
    text-align: center;
    text-decoration: none !important;
    box-shadow: inset 0 0 28px rgba(255,255,255,.015);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.htrx-pro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .7;
}

.htrx-pro-card-hb {
    border-color: rgba(217,70,239,.56);
    box-shadow: 0 0 20px rgba(217,70,239,.11), inset 0 0 32px rgba(168,85,247,.05);
}

.htrx-pro-card-hb::before {
    background: radial-gradient(circle at 18% 0%, rgba(217,70,239,.17), transparent 42%);
}

.htrx-pro-card-directory {
    border-color: rgba(34,211,238,.56);
    box-shadow: 0 0 20px rgba(34,211,238,.11), inset 0 0 32px rgba(34,211,238,.05);
}

.htrx-pro-card-directory::before {
    background: radial-gradient(circle at 82% 0%, rgba(34,211,238,.16), transparent 42%);
}

.htrx-pro-icon,
.htrx-pro-title,
.htrx-pro-text,
.htrx-pro-button {
    position: relative;
    z-index: 1;
}

.htrx-pro-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}

.htrx-pro-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.htrx-pro-card-hb .htrx-pro-icon {
    color: #f05cff;
    box-shadow: 0 0 18px rgba(217,70,239,.18), inset 0 0 12px rgba(217,70,239,.06);
}

.htrx-pro-card-directory .htrx-pro-icon {
    color: #38dfff;
    box-shadow: 0 0 18px rgba(34,211,238,.18), inset 0 0 12px rgba(34,211,238,.06);
}

.htrx-pro-title {
    color: #fff;
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.htrx-pro-text {
    max-width: 390px;
    margin-top: 7px;
    color: rgba(226,232,240,.82);
    font-size: 14px;
    line-height: 1.35;
}

.htrx-pro-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    margin-top: 14px;
    padding: 9px 16px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.htrx-pro-card-hb .htrx-pro-button {
    color: #f05cff;
    background: rgba(217,70,239,.07);
    box-shadow: 0 0 15px rgba(217,70,239,.09);
}

.htrx-pro-card-directory .htrx-pro-button {
    color: #38dfff;
    background: rgba(34,211,238,.07);
    box-shadow: 0 0 15px rgba(34,211,238,.09);
}

.htrx-pro-button span {
    font-size: 21px;
    line-height: .6;
}

.htrx-category-card:focus-visible,
.htrx-main-cta:focus-visible,
.htrx-pro-card:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .htrx-category-card:hover {
        transform: translateY(-3px);
    }
    .htrx-main-cta:hover {
        transform: translateY(-2px) scale(1.005);
        box-shadow: 0 0 24px rgba(217,70,239,.68), 0 0 28px rgba(34,211,238,.50), inset 0 0 32px rgba(34,211,238,.11);
    }
    .htrx-pro-card:hover {
        transform: translateY(-3px);
    }
    .htrx-pro-card-hb:hover {
        border-color: rgba(240,92,255,.88);
        box-shadow: 0 0 26px rgba(217,70,239,.22), inset 0 0 32px rgba(168,85,247,.08);
    }
    .htrx-pro-card-directory:hover {
        border-color: rgba(56,223,255,.88);
        box-shadow: 0 0 26px rgba(34,211,238,.21), inset 0 0 32px rgba(34,211,238,.08);
    }
}

@media (min-width: 680px) {
    .htrx-wrap { padding-left: 0; padding-right: 0; }
    .htrx-hero { width: 100%; margin-left: 0; border-radius: 0; }
    .htrx-hero::after { background: linear-gradient(180deg, transparent 62%, #080A12 100%); }
    .htrx-headline-block { margin-top: -24px; }
    .htrx-category-grid { gap: 14px; }
    .htrx-category-card { min-height: 176px; }
    .htrx-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .htrx-pro-card { padding: 23px 20px 20px; }
}

@media (min-width: 680px) {
    .htrx-headline-block,
    .htrx-supporting,
    .htrx-category-grid,
    .htrx-main-cta,
    .htrx-microcopy,
    .htrx-safety-line,
    .htrx-pro-footer {
        width: calc(100% - 48px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 380px) {
    .htrx-wrap { padding-left: 10px; padding-right: 10px; }
    .htrx-category-grid { gap: 8px; }
    .htrx-category-card { min-height: 145px; padding-left: 7px; padding-right: 7px; }
    .htrx-card-icon { width: 38px; height: 38px; }
    .htrx-main-cta { min-height: 82px; padding-right: 50px; }
    .htrx-cta-arrow { right: 17px; font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    .htrx-wrap *,
    .htrx-wrap *::before,
    .htrx-wrap *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@keyframes htrx-breathe {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.09); }
}

@keyframes htrx-sheen {
    0%, 70% { left: -35%; opacity: 0; }
    76% { opacity: .7; }
    92%, 100% { left: 115%; opacity: 0; }
}

@keyframes htrx-drift {
    from { transform: translate3d(0,0,0) scale(1); }
    to { transform: translate3d(38px,24px,0) scale(1.15); }
}

/* =========================================================
   HypnoTrix v1.0.4 — FLASH / SHOWMANSHIP ANIMATION LAYER
   Content remains visible without JavaScript. Animation is
   decorative only and reduced automatically when requested.
   ========================================================= */

.htrx-wrap {
    --htrx-pointer-x: 50%;
    --htrx-pointer-y: 22%;
    background-size: 130% 130%, 125% 125%, 140% 140%, 100% 100%;
    animation: htrx-bg-shift 14s ease-in-out infinite alternate;
}

.htrx-wrap::before {
    animation: htrx-texture-drift 18s linear infinite;
}

.htrx-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--htrx-pointer-x) var(--htrx-pointer-y), rgba(255,255,255,.10) 0, rgba(168,85,247,.12) 9%, rgba(34,211,238,.07) 18%, transparent 34%),
        radial-gradient(circle at 15% 68%, rgba(217,70,239,.09), transparent 25%),
        radial-gradient(circle at 84% 76%, rgba(34,211,238,.08), transparent 25%);
    mix-blend-mode: screen;
    opacity: .85;
    transition: background-position .08s linear;
}

.htrx-shell {
    z-index: 2;
}

.htrx-atmosphere {
    opacity: .25;
    filter: blur(70px);
    animation-duration: 8s;
}

.htrx-atmosphere-one {
    animation-name: htrx-drift-fast-one;
}

.htrx-atmosphere-two {
    animation-name: htrx-drift-fast-two;
}

.htrx-fx-grid,
.htrx-fx-scan,
.htrx-fx-beam,
.htrx-fx-orb,
.htrx-fx-sparks {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.htrx-fx-grid {
    left: -15%;
    right: -15%;
    bottom: -5vh;
    height: 58vh;
    z-index: 0;
    opacity: .17;
    transform-origin: 50% 100%;
    transform: perspective(520px) rotateX(67deg) scale(1.2);
    background-image:
        linear-gradient(rgba(34,211,238,.38) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,.35) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to top, #000 15%, rgba(0,0,0,.78) 50%, transparent 94%);
    -webkit-mask-image: linear-gradient(to top, #000 15%, rgba(0,0,0,.78) 50%, transparent 94%);
    animation: htrx-grid-travel 5.5s linear infinite;
}

.htrx-fx-scan {
    left: 0;
    right: 0;
    top: -18%;
    height: 80px;
    z-index: 8;
    opacity: .13;
    background: linear-gradient(180deg, transparent, rgba(34,211,238,.18), rgba(255,255,255,.42), rgba(217,70,239,.18), transparent);
    filter: blur(1px);
    mix-blend-mode: screen;
    animation: htrx-scan-drop 9s linear infinite;
}

.htrx-fx-beam {
    top: -18vh;
    width: 26vw;
    height: 135vh;
    z-index: 0;
    opacity: .15;
    filter: blur(14px);
    mix-blend-mode: screen;
    transform-origin: 50% 0;
}

.htrx-fx-beam-one {
    left: 5%;
    background: linear-gradient(180deg, rgba(217,70,239,.62), rgba(139,92,246,.15) 55%, transparent 92%);
    transform: rotate(18deg);
    animation: htrx-beam-one 9s ease-in-out infinite alternate;
}

.htrx-fx-beam-two {
    right: 3%;
    background: linear-gradient(180deg, rgba(34,211,238,.58), rgba(56,189,248,.14) 55%, transparent 92%);
    transform: rotate(-18deg);
    animation: htrx-beam-two 11s ease-in-out infinite alternate;
}

.htrx-fx-orb {
    width: 10px;
    height: 10px;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor, 0 0 38px currentColor, 0 0 80px currentColor;
    animation: htrx-orb-fly 8s ease-in-out infinite;
}

.htrx-fx-orb-one {
    top: 16%;
    left: 9%;
    color: #f05cff;
}

.htrx-fx-orb-two {
    top: 42%;
    right: 8%;
    color: #32ddff;
    animation-delay: -3.7s;
    animation-duration: 10s;
}

.htrx-fx-sparks {
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.htrx-fx-sparks span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    opacity: .55;
    box-shadow: 0 0 8px #fff, 0 0 18px #a855f7;
    animation: htrx-spark-rise 8s linear infinite;
}

.htrx-fx-sparks span:nth-child(1) { left: 8%; top: 88%; animation-delay: -1s; animation-duration: 7s; }
.htrx-fx-sparks span:nth-child(2) { left: 19%; top: 70%; animation-delay: -5s; animation-duration: 9s; }
.htrx-fx-sparks span:nth-child(3) { left: 36%; top: 93%; animation-delay: -2.5s; animation-duration: 7.8s; background:#d946ef; }
.htrx-fx-sparks span:nth-child(4) { left: 48%; top: 82%; animation-delay: -6.2s; animation-duration: 10s; background:#22d3ee; }
.htrx-fx-sparks span:nth-child(5) { left: 61%; top: 91%; animation-delay: -3.3s; animation-duration: 8.4s; }
.htrx-fx-sparks span:nth-child(6) { left: 73%; top: 76%; animation-delay: -7.1s; animation-duration: 9.6s; background:#22d3ee; }
.htrx-fx-sparks span:nth-child(7) { left: 87%; top: 89%; animation-delay: -4.2s; animation-duration: 7.2s; background:#d946ef; }
.htrx-fx-sparks span:nth-child(8) { left: 94%; top: 67%; animation-delay: -1.7s; animation-duration: 10.5s; }

.htrx-hero {
    isolation: isolate;
    box-shadow: 0 24px 80px rgba(0,0,0,.38), 0 0 60px rgba(139,92,246,.08);
}

.htrx-hero::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 22%;
    top: 50%;
    width: min(42vw, 440px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 18%, rgba(34,211,238,.42) 25%, transparent 34% 56%, rgba(217,70,239,.50) 64%, transparent 72% 100%);
    filter: blur(5px);
    opacity: .33;
    mix-blend-mode: screen;
    animation: htrx-hero-ring 9s linear infinite;
    pointer-events: none;
}

.htrx-hero::after {
    z-index: 3;
}

.htrx-hero img {
    animation: htrx-hero-alive 7s ease-in-out infinite alternate;
    will-change: transform, filter;
}

.htrx-headline-block {
    animation: htrx-headline-hover 4s ease-in-out infinite;
}

.htrx-headline-top,
.htrx-headline-bottom {
    text-shadow:
        0 4px 15px rgba(0,0,0,.85),
        0 0 14px rgba(255,255,255,.10),
        0 0 24px rgba(56,189,248,.08);
    animation: htrx-white-title-pulse 3s ease-in-out infinite;
}

.htrx-headline-focus {
    background-size: 240% auto;
    filter: drop-shadow(0 0 9px rgba(217,70,239,.30));
    animation:
        htrx-focus-flow 2.2s linear infinite,
        htrx-focus-glow 1.8s ease-in-out infinite alternate;
}

.htrx-supporting {
    text-shadow: 0 0 14px rgba(34,211,238,.15);
    animation: htrx-supporting-breathe 4.4s ease-in-out infinite;
}

.htrx-category-card {
    isolation: isolate;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.htrx-category-card::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -55%;
    left: -65%;
    width: 34%;
    height: 220%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
    opacity: 0;
    pointer-events: none;
    animation: htrx-card-sheen 5.4s ease-in-out infinite;
}

.htrx-category-card:nth-child(2)::after { animation-delay: -1.2s; }
.htrx-category-card:nth-child(3)::after { animation-delay: -2.4s; }
.htrx-category-card:nth-child(4)::after { animation-delay: -3.6s; }
.htrx-category-card:nth-child(5)::after { animation-delay: -4.8s; }
.htrx-category-card:nth-child(6)::after { animation-delay: -1.8s; }

.htrx-tone-violet {
    animation: htrx-card-violet-pulse 3.4s ease-in-out infinite alternate;
}

.htrx-tone-cyan {
    animation: htrx-card-cyan-pulse 3.8s ease-in-out infinite alternate;
}

.htrx-category-card:nth-child(2n) { animation-delay: -.9s; }
.htrx-category-card:nth-child(3n) { animation-delay: -1.8s; }

.htrx-card-icon {
    transform: translateZ(18px);
    animation: htrx-icon-float 2.5s ease-in-out infinite;
}

.htrx-category-card:nth-child(2) .htrx-card-icon { animation-delay: -.6s; }
.htrx-category-card:nth-child(3) .htrx-card-icon { animation-delay: -1.2s; }
.htrx-category-card:nth-child(4) .htrx-card-icon { animation-delay: -1.8s; }
.htrx-category-card:nth-child(5) .htrx-card-icon { animation-delay: -2.1s; }
.htrx-category-card:nth-child(6) .htrx-card-icon { animation-delay: -.9s; }

.htrx-tone-violet .htrx-card-icon {
    animation-name: htrx-icon-float-violet;
}

.htrx-tone-cyan .htrx-card-icon {
    animation-name: htrx-icon-float-cyan;
}

.htrx-card-title,
.htrx-card-description {
    transform: translateZ(10px);
}

.htrx-category-card.is-selected {
    transform: translateY(-3px) scale(1.012);
}

.htrx-category-card.htrx-pop {
    animation: htrx-card-pop .42s cubic-bezier(.2,.9,.25,1.25) 1 !important;
}

.htrx-main-cta {
    background-size: 100% 100%, 260% 100%;
    animation:
        htrx-cta-gradient 2.8s linear infinite,
        htrx-breathe 2.2s ease-in-out infinite,
        htrx-cta-float 3.4s ease-in-out infinite;
    will-change: transform, filter, box-shadow;
}

.htrx-main-cta::after {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(217,70,239,.45), rgba(139,92,246,.25), rgba(34,211,238,.45));
    filter: blur(20px);
    opacity: .38;
    animation: htrx-cta-aura 2.1s ease-in-out infinite alternate;
    pointer-events: none;
}

.htrx-cta-arrow {
    animation: htrx-arrow-kick 1.25s ease-in-out infinite;
}

.htrx-microcopy {
    text-shadow: 0 0 12px rgba(168,85,247,.26), 0 0 12px rgba(34,211,238,.16);
    animation: htrx-microcopy-glow 3.4s ease-in-out infinite;
}

.htrx-safety-line {
    animation: htrx-safety-breathe 5s ease-in-out infinite;
}

.htrx-pro-footer::before {
    height: 2px;
    background-size: 220% 100%;
    animation: htrx-footer-laser 2.8s linear infinite;
}

.htrx-pro-card {
    isolation: isolate;
    overflow: hidden;
}

.htrx-pro-card::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -45%;
    width: 24%;
    height: 250%;
    transform: rotate(22deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    opacity: 0;
    animation: htrx-pro-sheen 7s ease-in-out infinite;
    pointer-events: none;
}

.htrx-pro-card-directory::after {
    animation-delay: -3.5s;
}

.htrx-pro-card-hb {
    animation: htrx-pro-violet 4s ease-in-out infinite alternate;
}

.htrx-pro-card-directory {
    animation: htrx-pro-cyan 4.3s ease-in-out infinite alternate;
}

.htrx-pro-icon {
    animation: htrx-pro-icon 2.8s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
    .htrx-category-card:hover {
        transform:
            perspective(720px)
            rotateX(var(--htrx-tilt-x, 0deg))
            rotateY(var(--htrx-tilt-y, 0deg))
            translateY(-7px)
            scale(1.025);
    }

    .htrx-category-card:hover .htrx-card-icon {
        filter: brightness(1.25) drop-shadow(0 0 12px currentColor);
    }

    .htrx-main-cta:hover {
        transform: translateY(-5px) scale(1.018);
    }

    .htrx-pro-card:hover {
        transform: translateY(-7px) scale(1.01);
    }
}

/* Mobile stays lively, but avoids the heavier desktop laser treatment. */
@media (max-width: 679px) {
    .htrx-fx-grid {
        height: 42vh;
        opacity: .10;
        background-size: 54px 54px;
    }

    .htrx-fx-beam {
        width: 35vw;
        opacity: .075;
        filter: blur(18px);
    }

    .htrx-fx-scan {
        opacity: .07;
        animation-duration: 12s;
    }

    .htrx-fx-orb {
        opacity: .65;
    }

    .htrx-fx-sparks span:nth-child(n+6) {
        display: none;
    }

    .htrx-hero::before {
        width: 45vw;
        opacity: .22;
    }

    .htrx-category-card {
        animation-duration: 4.6s;
    }

    .htrx-card-icon {
        animation-duration: 3.2s;
    }

    .htrx-main-cta {
        animation-duration: 3.6s, 2.8s, 4.4s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .htrx-fx-grid,
    .htrx-fx-scan,
    .htrx-fx-beam,
    .htrx-fx-orb,
    .htrx-fx-sparks {
        display: none !important;
    }

    .htrx-hero img,
    .htrx-headline-block,
    .htrx-headline-top,
    .htrx-headline-bottom,
    .htrx-headline-focus,
    .htrx-supporting,
    .htrx-category-card,
    .htrx-card-icon,
    .htrx-main-cta,
    .htrx-cta-arrow,
    .htrx-microcopy,
    .htrx-safety-line,
    .htrx-pro-card,
    .htrx-pro-icon {
        transform: none !important;
        filter: none !important;
    }
}

@keyframes htrx-bg-shift {
    0% { background-position: 0% 0%, 100% 15%, 50% 35%, 0 0; }
    50% { background-position: 12% 9%, 88% 28%, 46% 53%, 0 0; }
    100% { background-position: 2% 18%, 100% 8%, 55% 62%, 0 0; }
}

@keyframes htrx-texture-drift {
    from { transform: translate3d(0,0,0) scale(1.02); }
    to { transform: translate3d(-32px,24px,0) scale(1.05); }
}

@keyframes htrx-drift-fast-one {
    0% { transform: translate3d(-10px,-5px,0) scale(.95); }
    50% { transform: translate3d(65px,35px,0) scale(1.28); }
    100% { transform: translate3d(12px,78px,0) scale(1.05); }
}

@keyframes htrx-drift-fast-two {
    0% { transform: translate3d(0,25px,0) scale(1.08); }
    50% { transform: translate3d(-72px,-18px,0) scale(1.34); }
    100% { transform: translate3d(-24px,72px,0) scale(.98); }
}

@keyframes htrx-grid-travel {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 96px, 96px 0; }
}

@keyframes htrx-scan-drop {
    0% { transform: translateY(-18vh); opacity: 0; }
    8% { opacity: .12; }
    74% { opacity: .09; }
    100% { transform: translateY(125vh); opacity: 0; }
}

@keyframes htrx-beam-one {
    0% { transform: translateX(-12vw) rotate(25deg) scaleX(.75); opacity: .07; }
    48% { transform: translateX(26vw) rotate(6deg) scaleX(1.22); opacity: .19; }
    100% { transform: translateX(54vw) rotate(-9deg) scaleX(.82); opacity: .10; }
}

@keyframes htrx-beam-two {
    0% { transform: translateX(15vw) rotate(-26deg) scaleX(.8); opacity: .08; }
    50% { transform: translateX(-26vw) rotate(-5deg) scaleX(1.18); opacity: .18; }
    100% { transform: translateX(-52vw) rotate(10deg) scaleX(.9); opacity: .09; }
}

@keyframes htrx-orb-fly {
    0%,100% { transform: translate3d(0,0,0) scale(.8); opacity: .18; }
    25% { transform: translate3d(14vw,8vh,0) scale(1.5); opacity: .95; }
    55% { transform: translate3d(28vw,-5vh,0) scale(.75); opacity: .38; }
    78% { transform: translate3d(8vw,15vh,0) scale(1.25); opacity: .72; }
}

@keyframes htrx-spark-rise {
    0% { transform: translate3d(0,8vh,0) scale(.35); opacity: 0; }
    15% { opacity: .8; }
    65% { opacity: .45; }
    100% { transform: translate3d(3vw,-82vh,0) scale(1.35); opacity: 0; }
}

@keyframes htrx-hero-ring {
    from { transform: translate(-50%,-50%) rotate(0deg) scale(.94); }
    50% { opacity: .47; }
    to { transform: translate(-50%,-50%) rotate(360deg) scale(1.06); }
}

@keyframes htrx-hero-alive {
    0% { transform: scale(1.045) translate3d(-.3%,0,0); filter: saturate(1.08) contrast(1.03) brightness(.98); }
    50% { filter: saturate(1.19) contrast(1.07) brightness(1.045); }
    100% { transform: scale(1.105) translate3d(.6%,-.7%,0); filter: saturate(1.13) contrast(1.05) brightness(1.02); }
}

@keyframes htrx-headline-hover {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes htrx-white-title-pulse {
    0%,100% { filter: brightness(1); }
    50% { filter: brightness(1.08); }
}

@keyframes htrx-focus-flow {
    from { background-position: 0% 50%; }
    to { background-position: 240% 50%; }
}

@keyframes htrx-focus-glow {
    from { filter: drop-shadow(0 0 7px rgba(217,70,239,.28)) brightness(1); }
    to { filter: drop-shadow(0 0 19px rgba(240,92,255,.72)) brightness(1.16); }
}

@keyframes htrx-supporting-breathe {
    0%,100% { opacity: .88; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.012); }
}

@keyframes htrx-card-sheen {
    0%, 66% { left: -65%; opacity: 0; }
    72% { opacity: .48; }
    88%,100% { left: 135%; opacity: 0; }
}

@keyframes htrx-card-violet-pulse {
    0% { box-shadow: 0 0 12px rgba(217,70,239,.20), inset 0 0 22px rgba(168,85,247,.07); }
    100% { box-shadow: 0 0 28px rgba(217,70,239,.46), 0 0 55px rgba(139,92,246,.12), inset 0 0 34px rgba(168,85,247,.15); }
}

@keyframes htrx-card-cyan-pulse {
    0% { box-shadow: 0 0 12px rgba(34,211,238,.18), inset 0 0 22px rgba(34,211,238,.06); }
    100% { box-shadow: 0 0 28px rgba(34,211,238,.44), 0 0 55px rgba(56,189,248,.12), inset 0 0 34px rgba(34,211,238,.14); }
}

@keyframes htrx-icon-float {
    0%,100% { transform: translateZ(18px) translateY(0) scale(1); }
    50% { transform: translateZ(18px) translateY(-6px) scale(1.08); }
}

@keyframes htrx-icon-float-violet {
    0%,100% { transform: translateZ(18px) translateY(0) scale(1); filter: drop-shadow(0 0 6px rgba(217,70,239,.55)); }
    50% { transform: translateZ(18px) translateY(-7px) scale(1.11); filter: drop-shadow(0 0 17px rgba(240,92,255,.95)); }
}

@keyframes htrx-icon-float-cyan {
    0%,100% { transform: translateZ(18px) translateY(0) scale(1); filter: drop-shadow(0 0 6px rgba(34,211,238,.55)); }
    50% { transform: translateZ(18px) translateY(-7px) scale(1.11); filter: drop-shadow(0 0 17px rgba(56,223,255,.95)); }
}

@keyframes htrx-card-pop {
    0% { transform: scale(1); }
    45% { transform: scale(1.055) translateY(-5px); }
    100% { transform: scale(1.012) translateY(-3px); }
}

@keyframes htrx-cta-gradient {
    from { background-position: 0 0, 0% 50%; }
    to { background-position: 0 0, 260% 50%; }
}

@keyframes htrx-cta-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes htrx-cta-aura {
    from { opacity: .25; transform: scale(.98); }
    to { opacity: .68; transform: scale(1.035); }
}

@keyframes htrx-arrow-kick {
    0%,100% { transform: translateY(-53%) translateX(0); text-shadow: 0 0 9px rgba(34,211,238,.62); }
    48% { transform: translateY(-53%) translateX(7px); text-shadow: 0 0 18px rgba(34,211,238,.95); }
}

@keyframes htrx-microcopy-glow {
    0%,100% { opacity: .72; }
    50% { opacity: 1; }
}

@keyframes htrx-safety-breathe {
    0%,100% { opacity: .55; }
    50% { opacity: .82; }
}

@keyframes htrx-footer-laser {
    from { background-position: 0% 50%; }
    to { background-position: 220% 50%; }
}

@keyframes htrx-pro-sheen {
    0%,70% { left: -45%; opacity: 0; }
    76% { opacity: .35; }
    90%,100% { left: 130%; opacity: 0; }
}

@keyframes htrx-pro-violet {
    from { box-shadow: 0 0 16px rgba(217,70,239,.09), inset 0 0 28px rgba(168,85,247,.04); }
    to { box-shadow: 0 0 30px rgba(217,70,239,.22), 0 0 65px rgba(139,92,246,.08), inset 0 0 38px rgba(168,85,247,.09); }
}

@keyframes htrx-pro-cyan {
    from { box-shadow: 0 0 16px rgba(34,211,238,.09), inset 0 0 28px rgba(34,211,238,.04); }
    to { box-shadow: 0 0 30px rgba(34,211,238,.21), 0 0 65px rgba(56,189,248,.08), inset 0 0 38px rgba(34,211,238,.09); }
}

@keyframes htrx-pro-icon {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.06); }
}

/* =========================================================
   HypnoTrix v1.0.5 — PER-CATEGORY CTA PILLS
   The old single homepage CTA has been removed from markup.
   Each category is now its own direct destination.
   ========================================================= */
.htrx-category-card {
    min-height: 194px;
    padding: 14px 10px 12px;
    color: #fff !important;
    text-decoration: none !important;
}

.htrx-category-card:visited,
.htrx-category-card:hover,
.htrx-category-card:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.htrx-card-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 245px);
    min-height: 40px;
    margin-top: 13px;
    padding: 8px 30px 8px 14px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(#090a14,#090a14) padding-box,
        linear-gradient(90deg,#f05cff 0%,#8b5cf6 48%,#22d3ee 100%) border-box;
    box-shadow:
        0 0 10px rgba(217,70,239,.34),
        0 0 12px rgba(34,211,238,.24),
        inset 0 0 18px rgba(255,255,255,.03);
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: clamp(10px, 2.65vw, 14px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
    transform: translateZ(22px);
    animation: htrx-card-pill-pulse 2.7s ease-in-out infinite alternate;
}

.htrx-card-cta::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -45%;
    width: 26%;
    height: 260%;
    transform: rotate(20deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
    opacity: 0;
    animation: htrx-card-pill-sheen 4.8s ease-in-out infinite;
    pointer-events: none;
}

.htrx-category-card:nth-child(2) .htrx-card-cta::before { animation-delay: -.8s; }
.htrx-category-card:nth-child(3) .htrx-card-cta::before { animation-delay: -1.6s; }
.htrx-category-card:nth-child(4) .htrx-card-cta::before { animation-delay: -2.4s; }
.htrx-category-card:nth-child(5) .htrx-card-cta::before { animation-delay: -3.2s; }
.htrx-category-card:nth-child(6) .htrx-card-cta::before { animation-delay: -4s; }

.htrx-card-cta-arrow {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-54%);
    color: #42e8ff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: .7;
    text-shadow: 0 0 9px rgba(34,211,238,.8);
    animation: htrx-card-arrow-kick 1.35s ease-in-out infinite;
}

.htrx-tone-violet .htrx-card-cta {
    box-shadow: 0 0 12px rgba(217,70,239,.44), 0 0 18px rgba(139,92,246,.18), inset 0 0 18px rgba(217,70,239,.06);
}

.htrx-tone-cyan .htrx-card-cta {
    box-shadow: 0 0 12px rgba(34,211,238,.42), 0 0 18px rgba(56,189,248,.16), inset 0 0 18px rgba(34,211,238,.06);
}

@media (hover: hover) and (pointer: fine) {
    .htrx-category-card:hover .htrx-card-cta {
        transform: translateZ(28px) scale(1.045);
        box-shadow: 0 0 20px rgba(217,70,239,.58), 0 0 26px rgba(34,211,238,.38), inset 0 0 22px rgba(255,255,255,.05);
    }
}

@media (max-width: 679px) {
    .htrx-category-card {
        min-height: 190px;
    }

    .htrx-card-cta {
        width: 100%;
        min-height: 37px;
        margin-top: 11px;
        padding-left: 9px;
        padding-right: 26px;
        font-size: clamp(9px, 2.7vw, 12px);
    }

    .htrx-card-cta-arrow {
        right: 8px;
        font-size: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .htrx-card-cta,
    .htrx-card-cta::before,
    .htrx-card-cta-arrow {
        animation: none !important;
        transform: none !important;
    }
}

@keyframes htrx-card-pill-pulse {
    from { filter: brightness(.96); }
    to { filter: brightness(1.16); }
}

@keyframes htrx-card-pill-sheen {
    0%, 62% { left: -45%; opacity: 0; }
    69% { opacity: .82; }
    86%, 100% { left: 125%; opacity: 0; }
}

@keyframes htrx-card-arrow-kick {
    0%, 100% { transform: translate(0,-54%); }
    50% { transform: translate(4px,-54%); }
}
