:root {
    --ptv-radius: 4px;
    --ptv-radius-sm: 0;
    --ptv-sheet-radius: 18px;
    --ptv-container: 1320px;
    --ptv-nav-height: 72px;
    --ptv-font: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: var(--ptv-transparent);
}

html {
    background: var(--ptv-ink);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ptv-text);
    background: var(--ptv-ink);
    font-family: var(--ptv-font);
    font-size: 16px;
    line-height: 1.5;
}

body.pulse-page-locked {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
}

:focus-visible {
    outline: 3px solid var(--ptv-focus);
    outline-offset: 3px;
}

.pulse-page {
    width: min(100%, calc(var(--ptv-container) + 32px));
    margin-inline: auto;
    padding: 12px 16px calc(var(--ptv-nav-height) + 24px + env(safe-area-inset-bottom));
}

.pulse-main {
    display: grid;
    gap: 34px;
    min-width: 0;
    padding-top: 20px;
}

.pulse-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    min-height: 60px;
    gap: 12px;
    border-bottom: 1px solid var(--ptv-line);
    background: var(--ptv-header-bg);
    box-shadow: none;
}

.pulse-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 9px;
    color: var(--ptv-text);
    font-size: .97rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.pulse-brand img {
    width: auto;
    height: 32px;
    max-width: 150px;
    object-fit: contain;
}
.pulse-header__links,
.pulse-header__utilities,
.pulse-header__saved,
.pulse-icon-button {
    display: flex;
    align-items: center;
}

.pulse-header__links {
    display: none;
}

.pulse-header__utilities {
    gap: 4px;
    margin-left: auto;
}

.pulse-icon-button,
.pulse-header__saved {
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 0;
    color: var(--ptv-text);
    background: var(--ptv-transparent);
}

.pulse-icon-button:hover,
.pulse-icon-button:focus-visible,
.pulse-header__saved:hover,
.pulse-header__saved:focus-visible {
    background: var(--ptv-surface);
}

.pulse-header__saved {
    display: none;
    gap: 7px;
    padding-inline: 12px;
    color: var(--ptv-muted);
    font-size: .82rem;
    font-weight: 700;
}

.pulse-header__saved[aria-current="page"] {
    color: var(--ptv-text);
    background: var(--ptv-surface);
}

.pulse-overlay {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.pulse-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.pulse-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: var(--ptv-overlay-scrim);
}

.pulse-overlay__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: min(82vh, 720px);
    overflow: auto;
    padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
    border: 1px solid var(--ptv-line);
    border-bottom: 0;
    border-radius: var(--ptv-sheet-radius) var(--ptv-sheet-radius) 0 0;
    background: var(--ptv-ink-raised);
    box-shadow: var(--ptv-sheet-shadow);
    transform: translateY(24px);
    transition: transform .18s ease;
}


.pulse-overlay.is-open .pulse-overlay__panel {
    transform: translateY(0);
}

.pulse-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.pulse-overlay__header h2 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -.03em;
}

.pulse-search-form label {
    display: block;
    margin-bottom: 9px;
    color: var(--ptv-muted);
    font-size: .84rem;
    font-weight: 700;
}

.pulse-search-form>div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px 7px 13px;
    border: 1px solid var(--ptv-text-alpha-10);
    border-radius: var(--ptv-radius-sm);
    background: var(--ptv-surface);
}

.pulse-search-form>div>svg {
    color: var(--ptv-muted);
}

.pulse-search-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--ptv-text);
    background: var(--ptv-transparent);
}

.pulse-search-form input::-webkit-search-cancel-button,
.pulse-search-form input::-webkit-search-decoration,
.pulse-search-form input::-webkit-search-results-button,
.pulse-search-form input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.pulse-search-form input::placeholder {
    color: var(--ptv-muted);
}

.pulse-category-drawer,
.pulse-menu-drawer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.pulse-category-drawer a,
.pulse-menu-drawer a,
.pulse-menu-drawer button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    min-height: 49px;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--ptv-line);
    border-radius: var(--ptv-radius-sm);
    color: var(--ptv-text);
    background: var(--ptv-surface);
    font-size: .88rem;
    font-weight: 650;
    text-align: left;
}

.pulse-category-drawer svg,
.pulse-menu-drawer svg {
    color: var(--ptv-muted);
}

.pulse-menu-drawer {
    grid-template-columns: 1fr;
}

.pulse-menu-drawer a,
.pulse-menu-drawer button {
    justify-content: flex-start;
}

.pulse-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 6px;
    color: var(--ptv-muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pulse-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--ptv-coral);
    box-shadow: 0 0 0 4px var(--ptv-coral-halo);
}

.pulse-single__title,
.pulse-section__title,
.pulse-not-found h1 {
    margin: 0;
    font-weight: 780;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.pulse-card__meta,
.pulse-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 10px;
    color: var(--ptv-muted);
    font-size: .78rem;
    font-weight: 650;
}

.pulse-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pulse-card__meta svg {
    width: 13px;
    height: 13px;
    color: var(--ptv-muted);
}

.pulse-card__meta span+span::before {
    content: "•";
    margin-right: 10px;
    color: var(--ptv-muted);
}

.pulse-single__links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.pulse-tag {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid var(--ptv-chip-border);
    color: var(--ptv-text);
    background: var(--ptv-chip-bg);
    font-size: .73rem;
    font-weight: 700;
}

.pulse-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 2px;
    color: var(--ptv-text-contrast);
    background: var(--ptv-coral);
    box-shadow: none;
    font-size: .87rem;
    font-weight: 800;
}

.pulse-button:hover {
    filter: brightness(1.08);
}

.pulse-button--quiet {
    color: var(--ptv-text);
    background: var(--ptv-surface);
    box-shadow: none;
}

.pulse-catalog__exit {
    display: flex;
    justify-content: flex-end;
    margin: 26px 0 0;
}


.pulse-section {
    min-width: 0;
}

.pulse-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.pulse-section__title {
    font-size: clamp(1.25rem, 4.5vw, 1.85rem);
}

.pulse-section__subtitle {
    max-width: 65ch;
    margin: 8px 0 0;
    color: var(--ptv-muted);
    font-size: .9rem;
}

.pulse-signal-list {
    border-top: 2px solid var(--ptv-coral);
    border-bottom: 1px solid var(--ptv-line);
    padding-block: 18px 4px;
}

.pulse-signal-list__items {
    display: grid;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pulse-signal-list__item {
    display: grid;
    grid-template-columns: 34px 86px minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: center;
    min-height: 76px;
    border-top: 1px solid var(--ptv-line);
}

.pulse-signal-list__number {
    color: var(--ptv-violet);
    font-size: .72rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.pulse-signal-list__image {
    display: block;
    overflow: hidden;
    background: var(--ptv-surface);
}

.pulse-signal-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pulse-signal-list__copy {
    min-width: 0;
}

.pulse-signal-list__copy h3 {
    margin: 0;
    overflow: hidden;
    font-size: .86rem;
    font-weight: 760;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pulse-signal-list__copy p {
    display: flex;
    gap: 8px;
    margin: 4px 0 0;
    color: var(--ptv-muted);
    font-size: .69rem;
    font-variant-numeric: tabular-nums;
}

.pulse-signal-list__copy p span+span::before {
    margin-right: 8px;
    color: var(--ptv-violet);
    content: "/";
}

.pulse-signal-list__watch {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ptv-on-violet);
    background: var(--ptv-violet);
}

.pulse-signal-list__watch svg {
    width: 15px;
    height: 15px;
    margin-left: 1px;
}

.pulse-rail__actions,
.pulse-rail__controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pulse-text-link {
    color: var(--ptv-violet);
    font-size: .82rem;
    font-weight: 750;
    white-space: nowrap;
}

.pulse-rail__controls {
    display: none;
}

.pulse-rail__controls button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--ptv-line);
    border-radius: 50%;
    color: var(--ptv-text);
    background: var(--ptv-surface);
}

.pulse-rail__track {
    display: flex;
    gap: 12px;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 1px 8px;
    scroll-padding-inline: 1px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--ptv-surface-raised) var(--ptv-transparent);
}

.pulse-card {
    min-width: 0;
    border-radius: 2px;
}

.pulse-rail__track>.pulse-card {
    flex: 0 0 clamp(136px, 39vw, 190px);
    scroll-snap-align: start;
}

.pulse-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: var(--fv-thumb-aspect-ratio, 16 / 9);
    background: var(--ptv-deep);
}

.pulse-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease, filter .24s ease;
}

.pulse-card__media::after {
    position: absolute;
    inset: 45% 0 0;
    content: "";
    background: linear-gradient(var(--ptv-transparent), var(--ptv-image-shade));
    pointer-events: none;
}

.pulse-card__ribbon {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    overflow: hidden;
    padding: 3px 7px;
    border-radius: 0;
    color: var(--ptv-on-violet);
    background: var(--ptv-violet);
    font-size: .66rem;
    font-weight: 850;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pulse-card__play {
    position: absolute;
    z-index: 1;
    right: 8px;
    bottom: 8px;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 0;
    color: var(--ptv-on-violet);
    background: var(--ptv-violet);
    opacity: .98;
}

.pulse-card__play svg {
    width: 15px;
    height: 15px;
    margin-left: 1px;
}

.pulse-card__body {
    padding: 9px 2px 1px;
}

.pulse-card__title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: .86rem;
    font-weight: 720;
    letter-spacing: -.02em;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pulse-card__meta {
    margin: 5px 0 0;
    font-size: .68rem;
}

.pulse-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
}

.pulse-grid .pulse-card__title {
    font-size: .92rem;
}

.fv-library-list .card {
    position: relative;
    min-width: 0;
}

.fv-library-list .card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: var(--fv-thumb-aspect-ratio, 16 / 9);
    border: 1px solid var(--ptv-line);
    border-radius: var(--ptv-radius-sm);
    background: var(--ptv-surface);
}

.fv-library-list .card__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-library-list .card__body {
    padding: 9px 42px 1px 2px;
}

.fv-library-list .card__title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: .9rem;
    font-weight: 720;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.fv-library-list .card-remove-btn {
    position: absolute;
    right: 2px;
    bottom: 0;
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border: 1px solid var(--ptv-line);
    border-radius: 9px;
    color: var(--ptv-muted);
    background: var(--ptv-surface);
}

.fv-library-list .remove-icon {
    width: 15px;
    height: 15px;
}
.pulse-history__list {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    justify-content: center;
    gap: 28px 14px;
}

.pulse-history__list .card {
    flex: 0 1 calc(50% - 7px);
    max-width: calc(50% - 7px);
}

.pulse-history .card__body {
    padding-right: 42px;
    min-height: 42px;
}

@media (min-width: 560px) {
    .pulse-history__list {
        gap: 26px 16px;
    }
    .pulse-history__list .card {
        flex: 0 1 calc(33.333% - 10.7px);
        max-width: calc(33.333% - 10.7px);
    }
}

@media (min-width: 760px) {
    .pulse-history__list {
        gap: 30px 17px;
    }
    .pulse-history__list .card {
        flex: 0 1 calc(25% - 12.75px);
        max-width: calc(25% - 12.75px);
    }
}

@media (min-width: 1100px) {
    .pulse-history__list {
        gap: 34px 19px;
    }
    .pulse-history__list .card {
        flex: 0 1 calc(25% - 14.25px);
        max-width: calc(25% - 14.25px);
    }
}

.pulse-filter {
    position: relative;
    flex: 0 0 auto;
}

.pulse-filter>button {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--ptv-line);
    border-radius: 0;
    color: var(--ptv-text);
    background: var(--ptv-surface);
    font-size: .8rem;
    font-weight: 720;
}

.pulse-filter__menu {
    position: absolute;
    z-index: 5;
    top: calc(100% + 7px);
    right: 0;
    min-width: 145px;
    padding: 6px;
    border: 1px solid var(--ptv-line);
    border-radius: var(--ptv-radius-sm);
    background: var(--ptv-surface-raised);
    box-shadow: var(--ptv-shadow);
}

.pulse-filter__menu a {
    display: block;
    padding: 8px 9px;
    border-radius: 7px;
    color: var(--ptv-muted);
    font-size: .82rem;
    font-weight: 650;
}

.pulse-filter__menu a:hover,
.pulse-filter__menu a[aria-current="true"] {
    color: var(--ptv-text);
    background: var(--ptv-active-surface);
}

.pulse-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.pulse-pagination a,
.pulse-pagination span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 0;
    color: var(--ptv-muted);
    font-size: .82rem;
    font-weight: 750;
}

.pulse-pagination a:hover,
.pulse-pagination .is-current {
    color: var(--ptv-text);
    background: var(--ptv-surface-raised);
}

.pulse-pagination .is-disabled {
    opacity: .35;
    pointer-events: none;
}

.pulse-suggest-dropdown {
    position: relative;
    margin-top: 8px;
    z-index: 200;
    background: var(--ptv-surface-raised);
    border: 1px solid var(--ptv-line);
    border-radius: 9px;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: var(--ptv-muted) var(--ptv-transparent);
}

.pulse-suggest-dropdown.is-visible {
    display: block;
}

.pulse-suggest-item {
    display: block;
    padding: 10px 14px;
    font-size: .85rem;
    color: var(--ptv-text);
    transition: background-color .15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pulse-suggest-item:hover {
    background: var(--ptv-surface-raised);
}

.pulse-empty-state {
    margin: 0;
    padding: 24px;
    border: 1px dashed var(--ptv-line);
    border-radius: var(--ptv-radius-sm);
    color: var(--ptv-muted);
    text-align: center;
}

#pulse-history-empty {
    border: 1px solid var(--ptv-line);
    background: var(--ptv-ink-raised);
    color: var(--ptv-violet);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 30px 20px;
    border-radius: var(--ptv-radius);
    text-align: center;
}

.pulse-single {
    display: grid;
    gap: 22px;
    padding: 12px;
    border-top: 2px solid var(--ptv-violet);
    border-bottom: 1px solid var(--ptv-line);
    background: var(--ptv-ink-raised);
    box-shadow: var(--ptv-shadow);
}

.pulse-player {
    order: 1;
    overflow: hidden;
    border-radius: var(--ptv-radius-sm);
    background: var(--ptv-player-bg);
}

.pulse-player__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: var(--ptv-player-bg);
}

.pulse-player__empty {
    display: grid;
    min-height: 220px;
    place-items: center;
    color: var(--ptv-muted);
}

.pulse-single__content {
    order: 3;
    min-width: 0;
}

.pulse-single__title {
    order: 2;
    font-size: clamp(1.7rem, 6vw, 2.5rem);
}

.pulse-single__meta {
    margin-top: 14px;
}

.pulse-single__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pulse-single__meta svg {
    width: 15px;
    height: 15px;
    color: var(--ptv-muted);
}

.pulse-single__actions,
.pulse-player__servers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.pulse-single__actions button,
.pulse-player__servers button,
.pulse-related-load button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--ptv-line);
    border-radius: 10px;
    color: var(--ptv-text);
    background: var(--ptv-surface);
    font-size: .82rem;
    font-weight: 750;
}

.pulse-single__actions button[aria-pressed="true"],
.pulse-player__servers button.is-active {
    border-color: var(--ptv-coral-line);
    color: var(--ptv-text);
    background: var(--ptv-coral-halo);
}

.pulse-player__servers {
    margin-top: 13px;
}

.pulse-player__servers button {
    min-height: 35px;
    padding-block: 6px;
    color: var(--ptv-muted);
    font-size: .75rem;
}

.pulse-tag {
    border-color: var(--ptv-line);
    color: var(--ptv-muted);
    background: var(--ptv-surface);
}

.pulse-single__overview {
    position: relative;
    margin-top: 19px;
    color: var(--ptv-text);
    font-size: .92rem;
    line-height: 1.68;
}

.pulse-single__overview.is-collapsible [data-pulse-overview-copy] {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.pulse-single__overview.is-expanded [data-pulse-overview-copy] {
    display: block;
}

.pulse-single__overview button {
    margin-top: 6px;
    padding: 3px 0;
    color: var(--ptv-violet);
    background: var(--ptv-transparent);
    font-size: .8rem;
    font-weight: 800;
}

.pulse-related-load {
    display: flex;
    justify-content: center;
    margin-top: -19px;
}

.pulse-related-load button:disabled {
    opacity: .6;
    cursor: wait;
}

.pulse-not-found {
    padding: clamp(36px, 9vw, 92px) 22px;
    border-top: 2px solid var(--ptv-coral);
    border-bottom: 1px solid var(--ptv-line);
    background: var(--ptv-ink-raised);
    text-align: center;
}

.pulse-not-found h1 {
    max-width: 18ch;
    margin: 0 auto;
    font-size: clamp(1.75rem, 6vw, 3rem);
}

.pulse-not-found>p:not(.pulse-kicker) {
    max-width: 55ch;
    margin: 14px auto 0;
    color: var(--ptv-muted);
}

.pulse-not-found__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.pulse-not-found .pulse-kicker {
    justify-content: center;
}

.pulse-tv-banner {
    width: min(100%, 970px);
    margin-inline: auto;
    overflow: hidden;
    border-radius: var(--ptv-radius-sm);
}

.pulse-tv-banner--header {
    margin-bottom: -4px;
}

.pulse-tv-banner--footer {
    margin-top: 34px;
}

.pulse-footer {
    display: grid;
    gap: 0;
    margin-top: 52px;
    overflow: hidden;
    border-top: 2px solid var(--ptv-violet);
    border-bottom: 1px solid var(--ptv-line);
    background: var(--ptv-transparent);
}

.pulse-footer__signal {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid var(--ptv-line);
}
.pulse-footer__brand {
    display: inline-block;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.pulse-footer__copy {
    max-width: 56ch;
    margin-top: 8px;
    color: var(--ptv-muted);
    font-size: .81rem;
    line-height: 1.65;
}

.pulse-footer__copy p {
    margin: 0;
}

.pulse-footer__shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--ptv-line);
}

.pulse-footer__shortcuts a,
.pulse-footer__shortcuts button {
    display: grid;
    min-height: 74px;
    align-content: center;
    justify-items: start;
    text-align: left;
    gap: 3px;
    padding: 10px;
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid var(--ptv-line);
    color: var(--ptv-text);
    background: var(--ptv-transparent);
    font-size: .76rem;
    font-weight: 750;
    font-family: inherit;
    cursor: pointer;
}

.pulse-footer__shortcuts a:last-child,
.pulse-footer__shortcuts button:last-child {
    border-right: 0;
}

.pulse-footer__shortcuts a:hover,
.pulse-footer__shortcuts button:hover {
    color: var(--ptv-on-violet);
    background: var(--ptv-violet);
}

.pulse-footer__shortcuts a:hover .pulse-footer__shortcut-index,
.pulse-footer__shortcuts button:hover .pulse-footer__shortcut-index {
    color: var(--ptv-on-violet);
}

.pulse-footer__shortcuts a[aria-current="page"],
.pulse-footer__shortcuts button.is-active {
    color: var(--ptv-on-violet) !important;
    background: var(--ptv-violet) !important;
}

.pulse-footer__shortcuts a[aria-current="page"] .pulse-footer__shortcut-index,
.pulse-footer__shortcuts button.is-active .pulse-footer__shortcut-index {
    color: var(--ptv-on-violet) !important;
}

.pulse-footer__shortcut-index {
    color: var(--ptv-violet);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.pulse-footer__network {
    border-bottom: 1px solid var(--ptv-line);
}

.pulse-footer__network summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    color: var(--ptv-muted);
    cursor: pointer;
    font-size: .75rem;
    font-weight: 750;
}

.pulse-footer__network summary::-webkit-details-marker {
    display: none;
}

.pulse-footer__network[open] summary {
    color: var(--ptv-text);
    border-bottom: 1px solid var(--ptv-line);
}

.pulse-footer__network[open] summary span {
    color: var(--ptv-coral);
}

.pulse-footer__network>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;
    padding: 14px 20px 18px;
}

.pulse-footer__network a {
    color: var(--ptv-muted);
    font-size: .75rem;
}

.pulse-footer__network a:hover {
    color: var(--ptv-focus);
}

.pulse-footer__legal {
    margin: 0;
    padding: 13px 20px;
    color: var(--ptv-text-alpha-70);
    font-size: .69rem;
}

.pulse-footer__categories {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    padding: 16px 20px;
    border-top: 1px solid var(--ptv-line);
}

.pulse-footer__category-link {
    color: var(--ptv-muted);
    font-size: .75rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: color .2s ease;
}

.pulse-footer__category-link:hover {
    color: var(--ptv-violet);
}

.pulse-bottom-nav {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(var(--ptv-nav-height) + env(safe-area-inset-bottom));
    padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--ptv-line);
    background: var(--ptv-menu-bg);
    box-shadow: var(--ptv-menu-shadow);
}

.pulse-bottom-nav a,
.pulse-bottom-nav button {
    display: grid;
    min-width: 0;
    min-height: 51px;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 4px 2px;
    border-radius: 0;
    color: var(--ptv-muted);
    background: var(--ptv-transparent);
    font-size: clamp(.61rem, 2.6vw, .69rem);
    font-weight: 700;
    line-height: 1.1;
}

.pulse-bottom-nav svg {
    width: 20px;
    height: 20px;
}

.pulse-bottom-nav span {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pulse-bottom-nav a[aria-current="page"],
.pulse-bottom-nav button.is-active,
.pulse-bottom-nav button:hover,
.pulse-bottom-nav button:focus-visible {
    color: var(--ptv-violet) !important;
    background: var(--ptv-violet-active);
}

/* Solid SVG icons on active bottom nav */
.pulse-bottom-nav a[aria-current="page"] svg path,
.pulse-bottom-nav a[aria-current="page"] svg rect,
.pulse-bottom-nav button.is-active svg path,
.pulse-bottom-nav button.is-active svg rect {
    fill: currentColor;
}

.pulse-is-pressed {
    animation: pulse-press .18s ease-out;
}

@keyframes pulse-press {
    50% {
        transform: scale(.94);
    }
}


.age-gate {
    background: var(--ptv-ink) !important;
    color: var(--ptv-text) !important;
    font-family: var(--ptv-font) !important;
}

.age-gate__content {
    border: 1px solid var(--ptv-line) !important;
    border-radius: var(--ptv-radius) !important;
    background: var(--ptv-ink-raised) !important;
    box-shadow: var(--ptv-shadow) !important;
}

.age-gate__title {
    color: var(--ptv-text) !important;
}

.age-gate__desc {
    color: var(--ptv-muted) !important;
}

.age-gate__badge,
.age-gate__btn,
.age-gate__btn--active {
    color: var(--ptv-text-contrast) !important;
    border-color: var(--ptv-coral) !important;
    background: var(--ptv-coral) !important;
}

@media (min-width: 560px) {
    .pulse-page {
        padding-inline: 24px;
    }

    .pulse-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px 16px;
    }

    .pulse-category-drawer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 760px) {
    :root {
        --ptv-nav-height: 0px;
    }

    .pulse-page {
        padding: 16px 32px 46px;
    }

    .pulse-main {
        gap: 42px;
        padding-top: 28px;
    }

    .pulse-header {
        min-height: 68px;
        gap: 24px;
    }

    .pulse-header__links {
        display: flex;
        align-items: center;
        gap: 4px;
        min-width: 0;
    }

    .pulse-header__links a,
    .pulse-header__links button {
        padding: 8px 10px;
        border-radius: 9px;
        color: var(--ptv-muted);
        background: var(--ptv-transparent);
        font-size: .83rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .pulse-header__links a:hover,
    .pulse-header__links a[aria-current="page"],
    .pulse-header__links button:hover {
        color: var(--ptv-text);
        background: var(--ptv-surface);
    }

    .pulse-header__saved {
        display: inline-flex;
    }

    .pulse-header__menu {
        display: none;
    }

    .pulse-overlay {
        align-items: center;
        padding: 32px;
    }

    .pulse-overlay__panel {
        width: min(100%, 620px);
        max-height: min(78vh, 690px);
        margin: auto;
        padding: 22px;
        border-bottom: 1px solid var(--ptv-line);
        border-radius: var(--ptv-sheet-radius);
        transform: translateY(10px) scale(.98);
    }

    .pulse-overlay.is-open .pulse-overlay__panel {
        transform: translateY(0) scale(1);
    }

    .pulse-overlay__panel--drawer {
        width: min(100%, 700px);
    }

    .pulse-category-drawer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pulse-signal-list__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 26px;
    }

    .pulse-rail__controls {
        display: flex;
    }

    .pulse-rail__track {
        gap: 16px;
        padding-bottom: 11px;
    }

    .pulse-rail__track>.pulse-card {
        flex-basis: clamp(162px, 19vw, 218px);
    }

    .pulse-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px 17px;
    }

    .pulse-card__title {
        font-size: .9rem;
    }

    .pulse-grid .pulse-card__title {
        font-size: .94rem;
    }

    .pulse-single {
        grid-template-columns: minmax(0, 1.4fr) minmax(280px, .75fr);
        padding: 16px;
    }

    .pulse-single__content {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    .pulse-single .pulse-player {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .pulse-single .pulse-single__title {
        grid-column: 1 / span 2;
        grid-row: 2;
        margin-top: 24px;
    }

    .pulse-footer {
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    }

    .pulse-footer__signal {
        grid-row: span 2;
        min-height: 100%;
        border-right: 1px solid var(--ptv-line);
        border-bottom: 0;
    }

    .pulse-footer__shortcuts {
        border-bottom: 1px solid var(--ptv-line);
    }

    .pulse-footer__network {
        grid-column: 2;
        border-bottom: 0;
    }

    .pulse-footer__legal {
        grid-column: 1 / -1;
        border-top: 1px solid var(--ptv-line);
    }

    .pulse-bottom-nav {
        display: none;
    }

}

@media (min-width: 1100px) {
    .pulse-page {
        padding-inline: 42px;
    }

    .pulse-header__links {
        gap: 8px;
    }

    .pulse-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 34px 19px;
    }

    .pulse-rail__track>.pulse-card {
        flex-basis: 198px;
    }

    .pulse-section__title {
        font-size: 1.9rem;
    }
}

@media (hover: hover) {
    .pulse-card__media:hover .pulse-card__image {
        transform: scale(1.045);
        filter: brightness(1.08);
    }

    .pulse-card__media:hover .pulse-card__play {
        color: var(--ptv-text-contrast);
        background: var(--ptv-coral);
    }

    .pulse-category-drawer a:hover,
    .pulse-menu-drawer a:hover,
    .pulse-menu-drawer button:hover {
        border-color: var(--ptv-violet-hover);
        background: var(--ptv-surface-raised);
    }

    /* Active states for drawers */
    .pulse-category-drawer a[aria-current="page"],
    .pulse-menu-drawer a[aria-current="page"],
    .pulse-menu-drawer button.is-active {
        border-color: var(--ptv-violet-hover) !important;
        background: var(--ptv-surface-raised) !important;
        color: var(--ptv-violet) !important;
    }

    .pulse-category-drawer a[aria-current="page"] svg,
    .pulse-menu-drawer a[aria-current="page"] svg,
    .pulse-menu-drawer button.is-active svg {
        color: var(--ptv-violet) !important;
    }

    /* Solid SVG icons on active bottom nav and drawers */
    .pulse-bottom-nav a[aria-current="page"] svg path,
    .pulse-bottom-nav a[aria-current="page"] svg rect,
    .pulse-bottom-nav button.is-active svg path,
    .pulse-bottom-nav button.is-active svg rect,
    .pulse-menu-drawer a[aria-current="page"] svg path,
    .pulse-menu-drawer a[aria-current="page"] svg rect,
    .pulse-menu-drawer button.is-active svg path,
    .pulse-menu-drawer button.is-active svg rect {
        fill: currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Tags Drawer styling */
.pulse-tags-drawer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.pulse-tags-drawer a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    min-height: 49px;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--ptv-line);
    border-radius: var(--ptv-radius-sm);
    color: var(--ptv-text);
    background: var(--ptv-surface);
    font-size: .88rem;
    font-weight: 650;
    text-align: left;
}

.pulse-tags-drawer a:hover {
    border-color: var(--ptv-violet-hover);
    background: var(--ptv-surface-raised);
}

@media (min-width: 1024px) {
    .pulse-tags-drawer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Policy and information signal desk */
.ptv-policy-shell {
    display: block;
    padding-top: 28px;
}

.ptv-policy-card {
    margin: 0 auto;
    border-top: 2px solid var(--ptv-violet);
    border-bottom: 1px solid var(--ptv-line);
    background: var(--ptv-ink-raised);
    box-shadow: var(--ptv-shadow);
}

.ptv-policy-header {
    padding: clamp(24px, 6vw, 48px);
    border-bottom: 1px solid var(--ptv-line);
}

.ptv-policy-header h1 {
    max-width: 18ch;
    margin: 0;
    font-size: clamp(2rem, 7vw, 3.8rem);
    font-weight: 780;
    letter-spacing: -.055em;
    line-height: 1;
}

.ptv-policy-prose,
.ptv-policy-form,
.ptv-stat-strip,
.ptv-table-wrap {
    width: 100%;
}

.ptv-policy-prose {
    padding: 26px clamp(24px, 6vw, 48px);
    color: var(--ptv-muted);
    line-height: 1.78;
}

.ptv-policy-form,
.ptv-stat-strip,
.ptv-table-wrap {
    width: auto;
    margin-right: clamp(24px, 6vw, 48px);
    margin-left: clamp(24px, 6vw, 48px);
}

.ptv-policy-prose > :first-child {
    margin-top: 0;
}

.ptv-policy-prose > :last-child {
    margin-bottom: 0;
}

.ptv-policy-prose h2 {
    margin: 32px 0 9px;
    color: var(--ptv-text);
    font-size: clamp(1.15rem, 4vw, 1.45rem);
    letter-spacing: -.035em;
    line-height: 1.2;
}

.ptv-policy-prose p,
.ptv-policy-prose ul {
    margin: 0 0 16px;
}

.ptv-policy-prose ul {
    padding-left: 22px;
}

.ptv-policy-prose li + li {
    margin-top: 7px;
}

.ptv-policy-prose a,
.ptv-policy-crosslinks a {
    color: var(--ptv-violet);
    text-decoration: underline;
    text-decoration-color: var(--ptv-violet-line);
    text-underline-offset: 3px;
}

.ptv-policy-prose strong {
    color: var(--ptv-text);
}

.ptv-policy-intro {
    padding-bottom: 8px;
}

.ptv-policy-crosslinks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 18px clamp(16px, 5vw, 48px);
    border-top: 1px solid var(--ptv-line);
    font-size: .76rem;
    font-weight: 750;
}

.ptv-policy-form {
    margin-top: 18px;
    margin-bottom: 34px;
    padding: clamp(18px, 4vw, 28px);
    border: 1px solid var(--ptv-line);
    border-radius: var(--ptv-radius);
    background: var(--ptv-surface);
}

.ptv-contact-form {
    max-width: 620px;
    border-top: 2px solid var(--ptv-coral);
}

.ptv-form-grid {
    display: grid;
    gap: 18px;
}

.ptv-field + .ptv-field,
.ptv-form-grid + .ptv-field {
    margin-top: 18px;
}

.ptv-form-grid .ptv-field + .ptv-field {
    margin-top: 0;
}

.ptv-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ptv-text);
    font-size: .78rem;
    font-weight: 780;
}

.ptv-field input,
.ptv-field select,
.ptv-field textarea {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--ptv-chip-border);
    border-radius: var(--ptv-radius-sm);
    outline: 0;
    color: var(--ptv-text);
    background-color: var(--ptv-ink);
    font: inherit;
}

.ptv-field select {
    padding-right: 42px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2375d7c5' stroke-width='2.2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 18px;
}

.ptv-field textarea {
    resize: vertical;
}

.ptv-field input::placeholder,
.ptv-field textarea::placeholder {
    color: var(--ptv-muted);
    opacity: .78;
}

.ptv-field input:focus,
.ptv-field select:focus,
.ptv-field textarea:focus {
    border-color: var(--ptv-violet);
    box-shadow: 0 0 0 3px var(--ptv-active-surface);
}

.ptv-field small {
    display: block;
    margin: 6px 0;
    color: var(--ptv-muted);
    font-size: .7rem;
    overflow-wrap: anywhere;
}

.ptv-check {
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 18px;
    color: var(--ptv-muted);
    font-size: .78rem;
}

.ptv-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--ptv-violet);
}

.ptv-policy-submit {
    min-height: 46px;
    margin-top: 22px;
    padding: 10px 17px;
    border-radius: 2px;
    color: var(--ptv-text-contrast);
    background: var(--ptv-coral);
    font: inherit;
    font-size: .83rem;
    font-weight: 820;
}

.ptv-form-marker {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ptv-line);
    color: var(--ptv-violet);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.ptv-form-status {
    min-height: 1.5em;
    margin: 14px 0 0;
    color: var(--ptv-violet);
    font-size: .78rem;
    font-weight: 750;
}

.ptv-form-status.is-error {
    color: var(--ptv-coral);
}

.ptv-stat-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    margin-bottom: 24px;
    border-top: 2px solid var(--ptv-coral);
    border-bottom: 1px solid var(--ptv-line);
}

.ptv-stat-strip div {
    min-width: 0;
    padding: 17px 12px;
    border-right: 1px solid var(--ptv-line);
    border-bottom: 1px solid var(--ptv-line);
}

.ptv-stat-strip div:nth-child(2n) {
    border-right: 0;
}

.ptv-stat-strip span {
    display: block;
    color: var(--ptv-muted);
    font-size: .68rem;
    font-weight: 760;
    text-transform: uppercase;
}

.ptv-stat-strip strong {
    display: block;
    margin-top: 4px;
    color: var(--ptv-violet);
    font-size: clamp(1.55rem, 5vw, 2.25rem);
    font-variant-numeric: tabular-nums;
}

.ptv-table-wrap {
    margin-bottom: 18px;
    overflow-x: auto;
    border: 1px solid var(--ptv-line);
}

.ptv-policy-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    color: var(--ptv-muted);
    font-size: .78rem;
    font-variant-numeric: tabular-nums;
}

.ptv-policy-table caption {
    padding: 13px 14px;
    color: var(--ptv-text);
    background: var(--ptv-surface);
    font-weight: 780;
    text-align: left;
}

.ptv-policy-table th,
.ptv-policy-table td {
    padding: 11px 13px;
    border-top: 1px solid var(--ptv-line);
    text-align: right;
}

.ptv-policy-table th:first-child {
    color: var(--ptv-text);
    text-align: left;
}

.ptv-policy-table thead th {
    color: var(--ptv-violet);
    background: var(--ptv-surface);
    font-size: .68rem;
    text-transform: uppercase;
}

.ptv-policy-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 15px 20px;
    border-top: 1px solid var(--ptv-line);
    font-size: .72rem;
    font-weight: 730;
}

.ptv-policy-nav a {
    color: var(--ptv-muted);
}

.ptv-policy-nav a:hover,
.ptv-policy-nav a:focus-visible {
    color: var(--ptv-violet);
}

@media (min-width: 700px) {
    .ptv-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ptv-stat-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ptv-stat-strip div {
        border-bottom: 0;
    }

    .ptv-stat-strip div:nth-child(2n) {
        border-right: 1px solid var(--ptv-line);
    }

    .ptv-stat-strip div:last-child {
        border-right: 0;
    }
}
