html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    color: #071a4a;
    font-family: "Segoe UI", "Helvetica Neue", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    background: #f8fbff;
}

body:has(.pn-shell) {
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 68% 18%, rgba(33, 105, 232, 0.09), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pn-shell,
.pn-shell * {
    box-sizing: border-box;
}

.pn-shell button,
.pn-shell input {
    font: inherit;
}

.pn-shell {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    display: grid;
    grid-template-rows: clamp(68px, 8.7vh, 90px) minmax(0, 1fr) clamp(20px, 3.2vh, 34px);
    gap: 0;
    overflow: hidden;
    padding: 0 clamp(20px, 2vw, 42px);
    color: #071a4a;
}

.pn-header {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.6vw, 30px);
}

.pn-brand {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.25vw, 22px);
    color: inherit;
    text-decoration: none;
}

.pn-logo {
    flex: 0 0 auto;
    width: clamp(190px, 15.4vw, 270px);
    height: clamp(50px, 6.2vh, 66px);
    object-fit: contain;
}

.pn-brand-line {
    width: 1px;
    height: clamp(42px, 5.5vh, 54px);
    background: #d4deef;
}

.pn-brand-copy {
    min-width: 245px;
    display: grid;
    gap: 6px;
}

.pn-brand-copy strong {
    color: #071a4a;
    font-size: clamp(18px, 1.42vw, 24px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.pn-brand-copy small {
    color: #203b78;
    font-size: clamp(11px, 0.86vw, 14px);
    line-height: 1.25;
}

.pn-search {
    flex: 0 1 clamp(310px, 24vw, 460px);
    min-height: clamp(42px, 5.3vh, 56px);
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 1px solid #cbd8ef;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16, 55, 115, 0.06);
}

.pn-search svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #113774;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.pn-search input {
    min-width: 0;
    border: 0;
    color: #071a4a;
    outline: none;
    font-size: 13px;
}

.pn-search input::placeholder {
    color: #284473;
    opacity: 1;
}

.pn-userbar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1vw, 16px);
}

.pn-bell {
    position: relative;
    width: clamp(38px, 3vw, 46px);
    height: clamp(38px, 3vw, 46px);
    display: grid;
    place-items: center;
    border: 0;
    color: #071a4a;
    background: transparent;
    cursor: pointer;
}

.pn-bell span {
    position: absolute;
    top: -3px;
    right: -2px;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #f00018;
    font-size: 12px;
    font-weight: 900;
}

.pn-bell svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.pn-user-line {
    width: 1px;
    height: clamp(42px, 5.5vh, 54px);
    background: #d4deef;
}

.pn-avatar {
    width: clamp(46px, 3.9vw, 58px);
    height: clamp(46px, 3.9vw, 58px);
    border: 4px solid #eef4ff;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 29%, #2b1c15 0 11px, transparent 12px),
        radial-gradient(circle at 50% 49%, #c27b4e 0 16px, transparent 17px),
        linear-gradient(135deg, transparent 0 42%, #081b43 43% 56%, transparent 57%) 50% 100% / 44px 26px no-repeat,
        linear-gradient(#ffffff, #f3f7ff);
    box-shadow: 0 12px 22px rgba(24, 70, 140, 0.12);
    overflow: hidden;
}

.pn-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pn-avatar-button {
    flex: 0 0 auto;
    padding: 0;
    appearance: none;
    cursor: zoom-in;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pn-avatar-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(24, 70, 140, .24), 0 0 0 3px rgba(32, 169, 255, .2);
}

.pn-avatar-button:focus-visible {
    outline: 3px solid #20a9ff;
    outline-offset: 3px;
}

.profile-photo-layer { z-index: 4300; }

.profile-photo-modal {
    position: relative;
    display: grid;
    width: min(560px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    box-sizing: border-box;
    place-items: center;
    gap: 14px;
    padding: 52px 22px 22px;
    border: 1px solid rgba(109, 215, 255, .72);
    border-radius: 20px;
    background: radial-gradient(circle at 50% 20%, #174d93, #071b46 62%, #030d25);
    box-shadow: 0 28px 85px rgba(0, 9, 32, .72), 0 0 34px rgba(31, 169, 255, .28);
}

.profile-photo-modal img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 150px);
    border: 5px solid #fff;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

.profile-photo-modal strong {
    color: #fff;
    font: 900 15px/1.2 system-ui, sans-serif;
    letter-spacing: .3px;
    text-align: center;
}

.profile-photo-modal .modal-close { top: 12px; right: 12px; z-index: 2; }

.pn-user {
    min-width: 116px;
    display: grid;
    gap: 3px;
}

.pn-user span {
    color: #071a4a;
    font-size: 14px;
    font-weight: 900;
}

.pn-user strong {
    position: relative;
    padding-left: 15px;
    color: #199d40;
    font-size: 12px;
    font-weight: 700;
}

.pn-user strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #24b442;
    transform: translateY(-50%);
}

.pn-chevron {
    width: 12px;
    height: 12px;
    appearance: none;
    padding: 0;
    border-top: 0;
    border-left: 0;
    border-right: 3px solid #071a4a;
    border-bottom: 3px solid #071a4a;
    background: transparent;
    cursor: pointer;
    transform: rotate(45deg);
    margin-top: -5px;
}

.pn-logout {
    display: none;
}

.pn-workspace {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(315px, 24.7vw, 388px);
    gap: clamp(18px, 1.65vw, 28px);
    overflow: visible;
}

.pn-content {
    --pn-premium-height: clamp(138px, 15vh, 162px);
    --pn-capsules-height: 170px;
    min-width: 0;
    min-height: 0;
    position: relative;
    display: grid;
    grid-template-rows:
        clamp(210px, 30vh, 240px)
        clamp(18px, 2.5vh, 28px)
        clamp(150px, 17.8vh, 184px)
        minmax(var(--pn-premium-height), 1fr);
    gap: clamp(8px, 0.9vh, 14px);
}

.pn-content-has-capsules {
    grid-template-rows:
        clamp(210px, 28vh, 240px)
        clamp(18px, 2.2vh, 26px)
        clamp(142px, 15.5vh, 170px)
        var(--pn-premium-height)
        var(--pn-capsules-height);
}

.pn-hero-strip {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(210px, 1fr);
    gap: clamp(14px, 1.3vw, 22px);
}

.pn-hero {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
    align-items: center;
    justify-self: start;
    overflow: hidden;
    padding: clamp(18px, 2.6vh, 32px) clamp(28px, 2.6vw, 46px);
    border: 1px solid #e3ebf9;
    border-radius: 14px;
    background:
        radial-gradient(circle at 72% 48%, rgba(28, 101, 232, 0.16), transparent 22rem),
        linear-gradient(135deg, #f4f8ff 0%, #eef5ff 100%);
    box-shadow: 0 18px 44px rgba(28, 76, 145, 0.08);
}

.pn-next-training {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    padding: clamp(8px, 1vh, 12px);
    border: 1px solid rgba(196, 212, 238, 0.9);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(238,245,255,0.94)),
        #fff;
    box-shadow:
        0 18px 36px rgba(22, 62, 130, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.88);
    overflow: hidden;
}

.pn-next-training-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(13, 99, 216, 0.08), rgba(36, 161, 63, 0.08)),
        #f8fbff;
    overflow: hidden;
}

.pn-next-training-image span {
    max-width: 14ch;
    padding: 14px;
    color: #203b78;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
    text-transform: uppercase;
}

.pn-next-training-preview {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.pn-next-training-preview:focus-visible {
    outline: 3px solid rgba(13, 99, 216, 0.45);
    outline-offset: -3px;
}

.pn-next-training-image img,
.pn-next-training-preview img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    object-position: center;
}

.training-preview-layer {
    z-index: 40;
}

.training-preview-modal {
    position: relative;
    width: min(1120px, calc(100vw - 28px));
    height: min(820px, calc(100vh - 28px));
    display: grid;
    place-items: center;
    padding: clamp(12px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: #f8fbff;
    box-shadow: 0 24px 70px rgba(3, 14, 28, 0.34);
}

.training-preview-modal img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.training-preview-modal .modal-close {
    top: 10px;
    right: 10px;
    z-index: 2;
}

.pn-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: clamp(8px, 1vh, 13px);
}

.pn-eyebrow {
    margin: 0;
    color: #0d63d8;
    font-size: clamp(11px, 0.82vw, 13px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pn-hero h1 {
    max-width: 390px;
    margin: 0;
    color: #071a4a;
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1.04;
    font-weight: 900;
}

.pn-hero h1 span {
    display: block;
    color: #24a13f;
}

.pn-hero h1 + p {
    max-width: 360px;
    margin: clamp(6px, 0.7vh, 10px) 0 0;
    color: #071a4a;
    font-size: clamp(12px, 0.88vw, 14px);
    line-height: 1.35;
    font-weight: 600;
}

.pn-note {
    display: grid;
    grid-template-columns: clamp(38px, 3vw, 46px) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: clamp(5px, 0.8vh, 10px);
}

.pn-note span {
    width: clamp(38px, 3vw, 46px);
    height: clamp(38px, 3vw, 46px);
    display: grid;
    place-items: center;
    border: 1px solid #d8e5fb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(10, 55, 130, 0.09);
}

.pn-note svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #0d63d8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.pn-note p {
    max-width: 350px;
    margin: 0;
    color: #203b78;
    font-size: clamp(11px, 0.78vw, 13px);
    line-height: 1.32;
}

.pn-hero-art {
    position: relative;
    min-height: 100%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(28, 76, 145, 0.14);
}

.pn-hero-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.pn-art-board {
    position: absolute;
    inset: 10% 15% 10% 5%;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff, #e9f1ff);
    box-shadow: 0 26px 44px rgba(28, 76, 145, 0.16), inset 0 1px 0 rgba(255,255,255,0.9);
}

.pn-art-board::before {
    content: "";
    position: absolute;
    left: 27%;
    top: 20%;
    width: 26%;
    height: 30%;
    border-radius: 10px;
    background:
        linear-gradient(135deg, transparent 42%, #21a957 43% 48%, transparent 49%),
        linear-gradient(#dce8ff, #dce8ff) 18px 23% / 70% 1px no-repeat,
        linear-gradient(#dce8ff, #dce8ff) 18px 50% / 70% 1px no-repeat,
        linear-gradient(#dce8ff, #dce8ff) 18px 77% / 70% 1px no-repeat,
        #eef5ff;
}

.pn-art-board::after {
    content: "";
    position: absolute;
    left: 8%;
    bottom: 16%;
    width: 52%;
    height: 35%;
    background:
        linear-gradient(#d4e2f9, #d4e2f9) 0 15% / 28% 8px no-repeat,
        linear-gradient(#d4e2f9, #d4e2f9) 0 45% / 22% 8px no-repeat,
        linear-gradient(#d4e2f9, #d4e2f9) 0 75% / 30% 8px no-repeat,
        linear-gradient(#d4e2f9, #d4e2f9) 68% 18% / 30% 8px no-repeat,
        linear-gradient(#d4e2f9, #d4e2f9) 68% 53% / 30% 8px no-repeat;
}

.pn-art-donut {
    position: absolute;
    left: 16%;
    top: 25%;
    width: clamp(58px, 5vw, 86px);
    height: clamp(58px, 5vw, 86px);
    border-radius: 50%;
    background: conic-gradient(#6bd225 0 35%, #0d63d8 35% 74%, #dce8ff 74% 100%);
    box-shadow: inset 0 0 0 clamp(15px, 1.4vw, 23px) #fff;
}

.pn-art-bars {
    position: absolute;
    left: 0;
    bottom: 12%;
    width: clamp(94px, 7.4vw, 128px);
    height: clamp(82px, 6.4vw, 112px);
    border-radius: 14px;
    background:
        linear-gradient(#0d63d8, #0d63d8) 25% 76% / 13% 24% no-repeat,
        linear-gradient(#0d63d8, #0d63d8) 48% 67% / 13% 42% no-repeat,
        linear-gradient(#0d63d8, #0d63d8) 71% 56% / 13% 60% no-repeat,
        #fff;
    box-shadow: 0 18px 30px rgba(28, 76, 145, 0.14);
}

.pn-art-target {
    position: absolute;
    right: 4%;
    bottom: 7%;
    width: clamp(128px, 11vw, 186px);
    height: clamp(128px, 11vw, 186px);
    border-radius: 50%;
    background: radial-gradient(circle, #0d63d8 0 13px, #fff 14px 30px, #0d63d8 31px 47px, #fff 48px 64px, #0d63d8 65px 100%);
    box-shadow: 0 24px 36px rgba(13, 99, 216, 0.18);
}

.pn-art-target::after {
    content: "";
    position: absolute;
    right: -7%;
    top: 13%;
    width: 64%;
    height: 10px;
    border-radius: 999px;
    background: #0a4fb4;
    transform: rotate(-38deg);
}

.pn-art-check {
    position: absolute;
    right: 20%;
    top: 14%;
    width: clamp(44px, 3.4vw, 58px);
    height: clamp(44px, 3.4vw, 58px);
    border-radius: 50%;
    background:
        linear-gradient(135deg, transparent 45%, #fff 46% 55%, transparent 56%) 38% 42% / 44% 44% no-repeat,
        #56c729;
    box-shadow: 0 14px 22px rgba(71, 186, 36, 0.24);
}

.pn-art-trend {
    position: absolute;
    right: 1%;
    top: 24%;
    width: clamp(54px, 4.4vw, 76px);
    height: clamp(54px, 4.4vw, 76px);
    border-radius: 12px;
    background:
        linear-gradient(135deg, transparent 44%, #1266df 45% 55%, transparent 56%) 50% 50% / 36px 36px no-repeat,
        linear-gradient(#1266df, #1266df) 58% 38% / 21px 5px no-repeat,
        #fff;
    box-shadow: 0 14px 24px rgba(28, 76, 145, 0.11);
}

.pn-section-title {
    display: flex;
    align-items: center;
    align-self: end;
    gap: 10px;
    margin: 0;
    color: #071a4a;
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.pn-products-title span {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(145deg, #1768e5, #43bd38);
}

.pn-products {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.7vw, 28px);
}

.pn-product {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    padding: clamp(14px, 2vh, 24px) clamp(16px, 1.55vw, 24px) clamp(12px, 1.6vh, 18px);
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(145deg, color-mix(in srgb, var(--card-color), #091e38 10%), var(--card-color));
    box-shadow: 0 16px 34px rgba(22, 55, 118, 0.14);
}

.pn-product-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 35%, rgba(255,255,255,0.18), transparent 26%);
}

.pn-product-symbol {
    position: absolute;
    right: 12%;
    top: 23%;
    width: 74px;
    height: 74px;
    opacity: 0.22;
    border: 14px solid #fff;
    border-radius: 50%;
}

.pn-product strong,
.pn-product p,
.pn-product button {
    position: relative;
    z-index: 1;
}

.pn-product strong {
    font-size: clamp(22px, 1.78vw, 32px);
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.pn-product p {
    max-width: 100%;
    margin: clamp(6px, 0.9vh, 10px) 0 clamp(8px, 1vh, 12px);
    overflow: hidden;
    font-size: clamp(8px, 0.68vw, 12px);
    line-height: 1.2;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pn-info {
    min-height: clamp(32px, 5vh, 44px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #071a4a;
    background: #fff;
    box-shadow: 0 12px 22px rgba(0,0,0,0.16);
    cursor: pointer;
    font-size: clamp(10px, 0.78vw, 13px);
    font-weight: 500;
}

.pn-info em {
    font-size: 27px;
    font-style: normal;
    line-height: 1;
}

.pn-premium {
    min-height: 0;
    height: var(--pn-premium-height);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1vw, 16px);
}

.pn-capsules {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 5px;
    padding: clamp(5px, 0.8vh, 8px) clamp(10px, 1vw, 14px);
    border: 1px solid #d8e5f8;
    border-radius: 10px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 34px rgba(18, 61, 132, 0.08);
    overflow: visible;
}

.pn-capsules-head {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.pn-capsules-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #116fe7, #064eb8);
    box-shadow: 0 12px 20px rgba(12, 84, 198, 0.18);
}

.pn-capsules-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.pn-capsules h2,
.pn-capsules p {
    margin: 0;
}

.pn-capsules h2 {
    color: #071a4a;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.pn-capsules p {
    margin-top: 4px;
    color: #203b78;
    font-size: clamp(10px, 0.82vw, 13px);
    line-height: 1.2;
}

.pn-capsules-all {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    border: 1px solid #0d63d8;
    border-radius: 7px;
    color: #0a4fb4;
    background: #fff;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

.pn-capsules-all em {
    font-size: 16px;
    font-style: normal;
    line-height: 1;
}

.pn-capsules-list {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: stretch;
    align-items: stretch;
    gap: clamp(8px, 1vw, 14px);
    overflow: visible;
}

.pn-capsule-card {
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    padding: 5px;
    border: 1px solid rgba(157, 183, 221, 0.62);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 22px rgba(22, 68, 133, 0.08);
}

.pn-capsule-thumb {
    position: relative;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(188, 207, 233, 0.9);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(13, 99, 216, 0.12), rgba(36, 161, 63, 0.12)),
        #dfeafa;
    cursor: pointer;
}

.pn-capsule-thumb img,
.pn-capsule-thumb video,
.pn-capsule-thumb > span {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.pn-capsule-thumb > span {
    background:
        radial-gradient(circle at 35% 42%, rgba(255,255,255,0.95) 0 18%, transparent 19%),
        linear-gradient(135deg, #dce9fb, #f6fbff);
}

.pn-capsule-thumb b {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(3, 24, 58, 0.72);
    transform: translate(-50%, -50%);
}

.pn-capsule-thumb b::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 13px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #fff;
}

.pn-capsule-thumb small {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    color: #fff;
    background: #2fbf35;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.pn-capsule-thumb em {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 3px 7px;
    border-radius: 6px;
    color: #fff;
    background: rgba(3, 24, 58, 0.82);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.pn-capsule-subtitle {
    position: absolute;
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 58px);
    overflow: hidden;
    padding: 3px 7px;
    border-radius: 6px;
    color: #fff;
    background: rgba(3, 24, 58, 0.78);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pn-capsule-copy {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.pn-capsule-copy strong {
    overflow: hidden;
    color: #071a4a;
    font-size: clamp(11px, 0.86vw, 14px);
    font-weight: 900;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pn-capsule-copy span {
    grid-column: 1;
    color: #145fd0;
    font-size: 10px;
    font-weight: 800;
}

.pn-capsule-copy button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 30px;
    padding: 0 12px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(145deg, #1375ec, #064eb8);
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.pn-premium-card {
    position: relative;
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-columns: clamp(58px, 5vw, 82px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(7px, 0.8vw, 12px);
    overflow: hidden;
    padding: clamp(9px, 1.4vh, 14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 41, 88, 0.98), rgba(3, 24, 58, 0.98));
    box-shadow:
        0 18px 34px rgba(9, 35, 82, 0.22),
        0 4px 0 rgba(4, 20, 60, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -8px 18px rgba(0,0,0,0.18);
    cursor: pointer;
}

.pn-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.14), transparent 42%),
        radial-gradient(circle at 14% 24%, rgba(255,255,255,0.18), transparent 24%);
    pointer-events: none;
}

.pn-premium-supervisor {
    background:
        linear-gradient(135deg, rgba(7, 41, 88, 0.98), rgba(3, 24, 58, 0.98));
}

.pn-premium-advisor {
    background:
        linear-gradient(135deg, rgba(6, 48, 97, 0.98), rgba(4, 30, 72, 0.98));
}

.pn-premium-media,
.pn-premium-copy,
.pn-premium-card em {
    position: relative;
    z-index: 1;
}

.pn-premium-media {
    width: clamp(56px, 4.8vw, 78px);
    height: clamp(56px, 4.8vw, 78px);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    box-shadow:
        0 14px 24px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

.pn-premium-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.pn-premium-copy {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 4px;
    text-align: center;
}

.pn-premium-copy strong {
    color: #fff;
    max-width: 100%;
    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    overflow-wrap: normal;
    text-transform: uppercase;
    white-space: nowrap;
}

.pn-premium-copy strong span,
.pn-premium-copy strong b {
    display: inline;
}

.pn-premium-copy strong b {
    color: #58c729;
    text-transform: none;
}

.notification-list {
    display: grid;
    gap: 12px;
}

.notification-card {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid #dce6f5;
    border-radius: 8px;
    background: #fff;
}

.notification-card strong {
    color: #071a4a;
    font-size: 15px;
}

.notification-card p {
    margin: 0;
    color: #203b78;
    line-height: 1.35;
}

.notification-card small {
    color: #6d83b2;
    font-size: 11px;
}

.pn-live-notification {
    position: fixed;
    z-index: 4200;
    top: 76px;
    right: 20px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    width: min(360px, calc(100vw - 28px));
    padding: 13px 15px;
    border: 1px solid #71dcff;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #0758bd, #6525b8 58%, #b92091);
    box-shadow: 0 18px 45px rgba(8, 28, 88, .4), 0 0 22px rgba(67, 210, 255, .25);
    text-align: left;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-12px) scale(.96);
    transition: opacity .25s ease, transform .25s ease;
}

.pn-live-notification.is-visible { opacity: 1; transform: none; }
.pn-live-notification > span:first-child { font-size: 29px; text-align: center; }
.pn-live-notification > span:last-child { display: grid; gap: 4px; }
.pn-live-notification strong { font: 900 13px/1.2 system-ui, sans-serif; }
.pn-live-notification small { color: #eaf7ff; font: 600 11px/1.35 system-ui, sans-serif; }

@media (max-width: 620px) {
    .pn-live-notification { top: 66px; right: 10px; }
}

.pn-premium-copy small {
    max-width: 28ch;
    color: #ffd84a;
    font-size: clamp(7px, 0.58vw, 10px);
    line-height: 1.12;
    font-weight: 400;
}

.pn-premium-formation .pn-premium-copy strong {
    max-width: 16ch;
    font-size: clamp(11px, 0.72vw, 14px);
    line-height: 1.05;
    white-space: normal;
}

.pn-premium-card em {
    width: clamp(24px, 1.8vw, 30px);
    height: clamp(24px, 1.8vw, 30px);
    display: none;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #20a9ff, #0060c8);
    box-shadow:
        0 10px 18px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.35);
    font-size: 24px;
    font-style: normal;
    line-height: 1;
}

.pn-tools {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    padding: clamp(14px, 2vh, 24px) clamp(14px, 1.4vw, 20px);
    border: 1px solid #dce6f5;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 44px rgba(21, 61, 126, 0.08);
}

.pn-tools-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.pn-tools-head h2 {
    margin: 0;
    color: #071a4a;
    font-size: clamp(15px, 1.08vw, 18px);
    font-weight: 900;
    text-transform: uppercase;
}

.pn-tools-head p {
    display: none;
}

.pn-tools-head > span {
    color: #6d83b2;
    font-size: 20px;
}

.pn-tools-list {
    min-height: 0;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 12px;
    padding: 2px 0 10px;
    overflow-y: auto;
    overflow-x: hidden;
}

.pn-tool {
    position: relative;
    min-width: 0;
    width: 6cm;
    height: 1.5cm;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px 10px 14px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #1677e8, #064fb8);
    box-shadow:
        0 12px 18px rgba(16, 48, 112, 0.22),
        0 4px 0 rgba(4, 22, 72, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -5px 10px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    cursor: pointer;
}

.pn-tool-has-logo {
    padding: 0;
    border: 1px solid #b8c7dc;
    border-radius: 8px;
    background: #fff;
    box-shadow:
        0 5px 10px rgba(20, 50, 95, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.pn-tool-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.pn-tool-winforce .pn-tool-logo,
.pn-tool-speech .pn-tool-logo,
.pn-tool-objections .pn-tool-logo,
.pn-tool-argumentario .pn-tool-logo {
    object-fit: cover;
}

.pn-tool::before,
.pn-tool::after {
    content: none;
}

.pn-tool-training,
.pn-tool-documents {
    background: linear-gradient(135deg, #37b83f, #168d31);
}

.pn-tool-promotions {
    background: linear-gradient(135deg, #1f8df0, #0864c9);
}

.pn-tool-objections {
    background: linear-gradient(135deg, #8b43d9, #5e24b7);
}

.pn-tool-speech {
    background: linear-gradient(135deg, #18a957, #087734);
}

.pn-tool-argumentario {
    background: linear-gradient(135deg, #0f9aa8, #036371);
}

.pn-tool-osiptel {
    background: linear-gradient(135deg, #0c4d91, #07315f);
}

.pn-tool-ruc {
    background: linear-gradient(135deg, #1a7fe8, #0756a8);
}

.pn-tool-migraciones {
    background: linear-gradient(135deg, #006b9c, #03405f);
}

.pn-tool-reniec {
    background: linear-gradient(135deg, #4668e8, #1f44bf);
}

.pn-tool-vicidial {
    background: linear-gradient(135deg, #7043d8, #4c23ad);
}

.pn-tool-winforce {
    background: linear-gradient(135deg, #ff9a18, #dd7500);
}

.pn-tool-admin {
    background: linear-gradient(135deg, #007f9f, #064264);
}

.pn-tool-calculator {
    background: linear-gradient(135deg, #ff9a18, #dd7500);
}

.pn-tool-indicators {
    background: linear-gradient(135deg, #0d75ec, #034fca);
}

.pn-tool.pn-tool-has-logo {
    background: #fff;
}

.pn-tool-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
    justify-items: center;
    text-align: center;
}

.pn-tool-copy strong {
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.08;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: normal;
}

.pn-tool-copy small {
    overflow: hidden;
    color: rgba(255,255,255,0.93);
    font-size: 9px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pn-tool em {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    line-height: 1;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.pn-tool-has-logo em {
    display: none;
}

.pn-add-tool {
    min-height: clamp(40px, 7.5vh, 82px);
    display: none;
    place-items: center;
    gap: 2px;
    border: 1px solid #dce6f5;
    border-radius: 8px;
    color: #1467e8;
    background: #fff;
    cursor: pointer;
}

.pn-add-tool strong {
    font-size: clamp(12px, 0.92vw, 15px);
    font-weight: 900;
}

.pn-add-tool small {
    color: #385182;
    font-size: clamp(9px, 0.78vw, 13px);
}

.pn-footer {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #203b78;
}

.pn-footer p {
    margin: 0;
    font-size: clamp(10px, 0.78vw, 13px);
}

.pn-footer nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 38px);
}

.pn-footer a {
    color: #203b78;
    text-decoration: none;
    font-size: clamp(10px, 0.78vw, 13px);
}

@media (max-width: 1400px) and (min-width: 981px) {
    .pn-shell {
        grid-template-rows: 70px minmax(0, 1fr) 20px;
        padding: 0 14px;
    }

    .pn-header {
        gap: 14px;
    }

    .pn-brand {
        min-width: 410px;
    }

    .pn-logo {
        width: 186px;
        height: 52px;
    }

    .pn-brand-copy {
        min-width: 220px;
    }

    .pn-brand-copy strong {
        font-size: 18px;
    }

    .pn-brand-copy small {
        font-size: 11px;
    }

    .pn-search {
        flex-basis: 290px;
        min-height: 42px;
    }

    .pn-workspace {
        grid-template-columns: minmax(0, 1fr) 306px;
        gap: 14px;
    }

    .pn-content {
        --pn-premium-height: clamp(122px, 16vh, 142px);
        --pn-capsules-height: 160px;
        grid-template-rows:
            clamp(198px, 29vh, 226px)
            18px
            clamp(140px, 19vh, 150px)
            minmax(var(--pn-premium-height), 1fr);
        gap: 6px;
    }

    .pn-content-has-capsules {
        grid-template-rows:
            clamp(176px, 25vh, 210px)
            18px
            clamp(124px, 16vh, 145px)
            var(--pn-premium-height)
            var(--pn-capsules-height);
    }
}

@media (max-width: 980px) {
    body:has(.pn-shell) {
        height: auto;
        overflow: auto;
    }

    .pn-shell {
        height: auto;
        min-height: 100vh;
        grid-template-rows: auto auto auto;
        gap: 16px;
        padding: 14px;
    }

    .pn-header,
    .pn-workspace,
    .pn-content,
    .pn-hero-strip,
    .pn-hero,
    .pn-products,
    .pn-premium {
        grid-template-columns: 1fr;
    }

    .pn-header {
        flex-wrap: wrap;
    }

    .pn-brand,
    .pn-search {
        flex-basis: 100%;
    }

    .pn-hero,
    .pn-product,
    .pn-premium-card {
        min-height: 150px;
    }

    .pn-hero {
        width: 100%;
    }

    .pn-next-training {
        min-height: 180px;
    }

    .pn-tools {
        min-height: auto;
    }

    .pn-premium {
        position: static;
        height: auto;
    }
}

@media (min-width: 981px) and (max-height: 600px) {
    .pn-shell {
        grid-template-rows: 64px minmax(0, 1fr) 18px;
    }

    .pn-logo {
        width: 178px;
        height: 48px;
    }

    .pn-brand-copy strong {
        font-size: 17px;
    }

    .pn-brand-copy small {
        font-size: 10px;
    }

    .pn-search {
        min-height: 40px;
    }

    .pn-content {
        --pn-premium-height: 94px;
        --pn-capsules-height: 152px;
        grid-template-rows: 100px 17px 105px minmax(var(--pn-premium-height), 1fr);
        gap: 9px;
    }

    .pn-content-has-capsules {
        grid-template-rows: 100px 17px 105px var(--pn-premium-height) var(--pn-capsules-height);
    }

    .pn-hero {
        padding: 10px 18px;
    }

    .pn-hero h1 {
        font-size: 25px;
        line-height: 1;
    }

    .pn-hero h1 + p,
    .pn-note p {
        font-size: 10px;
        line-height: 1.22;
    }

    .pn-note {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 8px;
        margin-top: 4px;
    }

    .pn-note span {
        width: 32px;
        height: 32px;
    }

    .pn-note svg {
        width: 19px;
        height: 19px;
    }

    .pn-next-training {
        padding: 10px;
    }

    .pn-product {
        padding: 11px 16px 9px;
    }

    .pn-product strong {
        font-size: 24px;
    }

    .pn-product p {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.18;
    }

    .pn-product-symbol {
        width: 60px;
        height: 60px;
        border-width: 12px;
    }

    .pn-info {
        min-height: 34px;
    }

    .pn-premium-card {
        grid-template-columns: 62px minmax(0, 1fr);
        padding: 9px 12px;
    }

    .pn-premium-media {
        width: 60px;
        height: 60px;
    }

    .pn-premium-copy {
        gap: 4px;
    }

    .pn-premium-copy strong {
        font-size: 17px;
    }

    .pn-premium-copy small {
        font-size: 8px;
        line-height: 1.2;
    }

    .pn-premium-card em {
        width: 26px;
        height: 26px;
        font-size: 22px;
    }

    .pn-tools {
        padding: 12px;
    }

    .pn-tool {
        height: 1.28cm;
    }
}

@media (min-width: 981px) and (max-height: 760px) {
    .pn-shell {
        grid-template-rows: 58px minmax(0, 1fr) 18px;
        padding: 0 clamp(14px, 1.4vw, 24px);
    }

    .pn-logo {
        width: 158px;
        height: 42px;
    }

    .pn-brand {
        gap: 12px;
    }

    .pn-brand-line,
    .pn-user-line {
        height: 38px;
    }

    .pn-brand-copy {
        min-width: 210px;
        gap: 3px;
    }

    .pn-brand-copy strong {
        font-size: 16px;
    }

    .pn-brand-copy small {
        font-size: 10px;
    }

    .pn-search {
        flex-basis: 300px;
        min-height: 38px;
    }

    .pn-avatar {
        width: 42px;
        height: 42px;
    }

    .pn-workspace {
        grid-template-columns: minmax(0, 1fr) 292px;
        gap: 12px;
    }

    .pn-content {
        --pn-premium-height: 92px;
        --pn-capsules-height: 152px;
        grid-template-rows: 150px 16px 104px minmax(var(--pn-premium-height), 1fr);
        gap: 7px;
    }

    .pn-content-has-capsules {
        grid-template-rows: 150px 16px 104px var(--pn-premium-height) var(--pn-capsules-height);
    }

    .pn-hero {
        padding: 12px 22px;
        grid-template-columns: minmax(210px, 0.82fr) minmax(260px, 1.18fr);
    }

    .pn-eyebrow {
        font-size: 10px;
    }

    .pn-hero h1 {
        font-size: 25px;
    }

    .pn-hero h1 + p,
    .pn-note p {
        font-size: 10px;
        line-height: 1.22;
    }

    .pn-hero h1 + p {
        display: none;
    }

    .pn-note {
        display: none;
    }

    .pn-next-training {
        padding: 11px;
    }

    .pn-section-title {
        font-size: 11px;
    }

    .pn-products-title span {
        width: 16px;
        height: 16px;
    }

    .pn-product {
        padding: 10px 16px 9px;
    }

    .pn-product strong {
        font-size: 22px;
    }

    .pn-product p {
        margin-top: 4px;
        margin-bottom: 6px;
        max-width: 100%;
        font-size: 8px;
        line-height: 1.1;
    }

    .pn-product-symbol {
        width: 58px;
        height: 58px;
        border-width: 11px;
    }

    .pn-info {
        min-height: 31px;
        font-size: 10px;
    }

    .pn-premium-card {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 8px;
        padding: 8px 12px;
    }

    .pn-premium-media {
        width: 56px;
        height: 56px;
    }

    .pn-premium-copy {
        gap: 3px;
    }

    .pn-premium-copy strong {
        font-size: 16px;
    }

    .pn-premium-copy small {
        display: block;
        color: #ffd84a;
        font-size: 8px;
        line-height: 1.08;
        font-weight: 400;
    }

    .pn-premium-card em {
        width: 23px;
        height: 23px;
        font-size: 19px;
    }

    .pn-capsules {
        gap: 4px;
        padding: 4px 8px;
    }

    .pn-capsules-head {
        grid-template-columns: 24px minmax(0, 1fr) auto;
        gap: 7px;
    }

    .pn-capsules-icon {
        width: 24px;
        height: 24px;
    }

    .pn-capsules h2 {
        font-size: 11px;
    }

    .pn-capsules p {
        font-size: 10px;
        margin-top: 2px;
    }

    .pn-capsules-list {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        justify-content: stretch;
        align-items: stretch;
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }

    .pn-capsule-card {
        min-width: 0;
        height: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr);
        padding: 4px;
    }

    .pn-capsule-thumb {
        height: 100%;
        min-height: 0;
    }

    .pn-capsule-thumb b {
        width: 34px;
        height: 34px;
    }

    .pn-capsule-thumb b::after {
        left: 13px;
        top: 10px;
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 11px;
    }

    .pn-capsule-thumb small {
        padding: 3px 6px;
        font-size: 9px;
    }

    .pn-capsule-thumb em {
        padding: 2px 6px;
        font-size: 10px;
    }

    .pn-tools {
        padding: 10px 10px;
    }

    .pn-tools-head h2 {
        font-size: 13px;
    }

    .pn-tools-list {
        gap: 12px;
    }

    .pn-tool {
        width: 5.45cm;
        height: 1.22cm;
    }

    .pn-footer p,
    .pn-footer a {
        font-size: 10px;
    }
}

/* Welcome block refinement only. */
@media (min-width: 981px) {
    .pn-hero-strip {
        grid-template-columns: minmax(0, 3fr) minmax(210px, 1fr);
    }

    .pn-hero {
        width: 100%;
        grid-template-columns: minmax(250px, 0.88fr) minmax(300px, 1.12fr);
        align-items: center;
        padding: clamp(16px, 2.2vh, 28px) clamp(26px, 2.4vw, 42px);
    }

    .pn-hero-copy {
        align-content: center;
        gap: clamp(6px, 0.8vh, 10px);
    }

    .pn-eyebrow {
        font-size: clamp(11px, 0.82vw, 13px);
    }

    .pn-hero h1 {
        max-width: 390px;
        font-size: clamp(30px, 2.35vw, 42px);
        line-height: 1.04;
    }

    .pn-hero h1 + p {
        max-width: 360px;
        margin-top: clamp(6px, 0.7vh, 10px);
        font-size: clamp(12px, 0.82vw, 14px);
        line-height: 1.35;
    }

    .pn-note {
        grid-template-columns: clamp(38px, 3.1vw, 48px) minmax(0, 1fr);
        gap: 12px;
        margin-top: clamp(7px, 1vh, 12px);
    }

    .pn-note span {
        width: clamp(38px, 3.1vw, 48px);
        height: clamp(38px, 3.1vw, 48px);
    }

    .pn-note svg {
        width: 24px;
        height: 24px;
    }

    .pn-note p {
        max-width: 350px;
        font-size: clamp(11px, 0.78vw, 13px);
        line-height: 1.32;
    }

    .pn-hero-art {
        min-height: 0;
        height: 100%;
        align-self: stretch;
        transform: none;
    }

    .pn-art-board {
        inset: 12% 13% 12% 8%;
        border-radius: 16px;
    }

    .pn-art-donut {
        left: 17%;
        top: 31%;
        width: clamp(42px, 4vw, 68px);
        height: clamp(42px, 4vw, 68px);
        box-shadow: inset 0 0 0 clamp(11px, 1.05vw, 18px) #fff;
    }

    .pn-art-bars {
        left: 4%;
        bottom: 16%;
        width: clamp(74px, 6vw, 104px);
        height: clamp(62px, 5.1vw, 88px);
    }

    .pn-art-target {
        right: 6%;
        bottom: 13%;
        width: clamp(104px, 9.4vw, 154px);
        height: clamp(104px, 9.4vw, 154px);
        background: radial-gradient(circle, #0d63d8 0 11px, #fff 12px 24px, #0d63d8 25px 39px, #fff 40px 53px, #0d63d8 54px 100%);
    }

    .pn-art-target::after {
        right: -4%;
        top: 15%;
        width: 58%;
        height: 9px;
    }

    .pn-art-check {
        right: 21%;
        top: 16%;
        width: clamp(36px, 3vw, 50px);
        height: clamp(36px, 3vw, 50px);
    }

    .pn-art-trend {
        right: 2%;
        top: 28%;
        width: clamp(44px, 3.8vw, 64px);
        height: clamp(44px, 3.8vw, 64px);
    }
}

@media (min-width: 981px) and (max-width: 1400px) {
    .pn-hero-strip {
        grid-template-columns: minmax(0, 3fr) minmax(180px, 1fr);
        gap: 12px;
    }

    .pn-hero {
        width: 100%;
        grid-template-columns: minmax(230px, 0.9fr) minmax(270px, 1.1fr);
        padding: 16px 28px;
    }

    .pn-next-training {
        padding: 14px;
    }

    .pn-hero h1 {
        max-width: 340px;
        font-size: 32px;
        line-height: 1.04;
    }

    .pn-hero h1 + p {
        max-width: 320px;
        font-size: 12px;
    }

    .pn-note p {
        max-width: 320px;
        font-size: 12px;
    }

    .pn-art-board {
        inset: 12% 12% 12% 9%;
    }

    .pn-art-target {
        right: 6%;
        bottom: 15%;
        width: 124px;
        height: 124px;
    }
}
