/* Piciņa case — dark oven, red order ticket, cream receipt paper. */
.pc-case {
    --pc-black: #101010;
    --pc-charcoal: #1b1b1a;
    --pc-red: #d53527;
    --pc-red-dark: #a8231a;
    --pc-cream: #f4eedf;
    --pc-paper: #fffdf7;
    --pc-ink: #1d1b18;
    --pc-muted: #68625a;
    --pc-line: rgba(29, 27, 24, 0.16);
    --pc-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --pc-marker: "Caveat Brush", cursive;
    color: var(--pc-ink);
    background: var(--pc-paper);
}

body:has(.pc-case) {
    background: var(--pc-paper);
    background-image: none;
}

.pc-case a:focus-visible,
.pc-case summary:focus-visible {
    outline: 2px solid var(--pc-red);
    outline-offset: 3px;
}

.pc-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 4rem;
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(213, 53, 39, 0.18), transparent 30%),
        linear-gradient(145deg, #090909 0%, #181715 58%, #0f0f0e 100%);
}
.pc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.pc-breadcrumb {
    position: relative;
    z-index: 1;
}
.pc-hero .pc-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}
.pc-hero .pc-breadcrumb a:hover,
.pc-hero .pc-breadcrumb span[aria-current="page"] {
    color: #fff;
}
.pc-hero .pc-breadcrumb i {
    color: rgba(255, 255, 255, 0.32);
}

.pc-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.25rem;
    align-items: center;
    margin-top: 2rem;
}
@media (min-width: 960px) {
    .pc-hero__grid {
        grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
        gap: 3rem;
    }
}

.pc-brand {
    display: inline-block;
    font-family: var(--pc-marker);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    color: #fff;
    transform: rotate(-2deg);
    margin: 0 0 1.25rem;
}
.pc-brand::after {
    content: "";
    display: block;
    width: 74%;
    height: 4px;
    margin: 0.25rem auto 0;
    background: var(--pc-red);
    transform: rotate(1deg);
}

.pc-eyebrow,
.pc-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--pc-red);
    margin: 0 0 0.75rem;
}
.pc-h1 {
    max-width: 14ch;
    font-family: var(--pc-display);
    font-size: clamp(2.4rem, 5.4vw, 4.7rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.1rem;
}
.pc-context {
    color: #efb6af;
    font-size: 0.92rem;
    margin: 0 0 1rem;
}
.pc-lead {
    max-width: 51ch;
    color: rgba(255,255,255,0.76);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

.pc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.1rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
}
.pc-btn:hover {
    transform: translateY(-1px);
}
.pc-btn--red {
    color: #fff;
    background: var(--pc-red);
}
.pc-btn--red:hover {
    color: #fff;
    background: var(--pc-red-dark);
}
.pc-btn--line {
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
}
.pc-btn--line:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

.pc-preview {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 10px;
    background: #080808;
    box-shadow: 0 32px 70px rgba(0,0,0,0.46);
    transform: rotate(0.4deg);
}
.pc-preview__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    background: #252523;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pc-preview__bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6e6b65;
}
.pc-preview__bar span:first-child {
    background: var(--pc-red);
}
.pc-preview__bar b {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.52);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.pc-preview img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pc-section {
    padding: 3.5rem 0;
}
@media (min-width: 960px) {
    .pc-section {
        padding: 4.75rem 0;
    }
}
.pc-section--paper {
    background: var(--pc-cream);
}
.pc-section--cream {
    background: #f7f2e8;
    border-top: 1px solid var(--pc-line);
    border-bottom: 1px solid var(--pc-line);
}
.pc-h2 {
    max-width: 24ch;
    font-family: var(--pc-display);
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: var(--pc-ink);
    margin: 0 0 0.9rem;
}
.pc-body {
    max-width: 66ch;
    color: var(--pc-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pc-ticket {
    position: relative;
    display: grid;
    gap: 1.75rem;
    padding: 1.6rem 1.35rem;
    background: var(--pc-paper);
    box-shadow: 0 14px 35px rgba(40, 31, 20, 0.1);
}
.pc-ticket::before,
.pc-ticket::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 8px;
    background:
        linear-gradient(135deg, transparent 5px, var(--pc-paper) 0) 0 0/10px 10px repeat-x,
        linear-gradient(45deg, var(--pc-paper) 5px, transparent 0) 0 0/10px 10px repeat-x;
}
.pc-ticket::before {
    top: -7px;
}
.pc-ticket::after {
    bottom: -7px;
    transform: rotate(180deg);
}
@media (min-width: 900px) {
    .pc-ticket {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
        gap: 3rem;
        align-items: center;
        padding: 2.4rem 2.5rem;
    }
}
.pc-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px dashed var(--pc-line);
    border-left: 1px dashed var(--pc-line);
}
.pc-fact {
    min-height: 104px;
    padding: 1rem;
    border-right: 1px dashed var(--pc-line);
    border-bottom: 1px dashed var(--pc-line);
}
.pc-fact strong {
    display: block;
    font-family: var(--pc-display);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pc-red);
    margin-bottom: 0.35rem;
}
.pc-fact span {
    color: var(--pc-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.pc-journey {
    position: relative;
    display: grid;
    gap: 1.25rem;
    margin-top: 2.25rem;
}
@media (min-width: 800px) {
    .pc-journey {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .pc-journey::before {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        top: 10px;
        border-top: 2px dashed rgba(213, 53, 39, 0.35);
    }
}
.pc-journey__item {
    position: relative;
}
.pc-journey__dot {
    position: relative;
    z-index: 1;
    display: block;
    width: 21px;
    height: 21px;
    margin-bottom: 0.9rem;
    border: 5px solid var(--pc-paper);
    border-radius: 50%;
    background: var(--pc-red);
    box-shadow: 0 0 0 1px var(--pc-red);
}
.pc-journey h3 {
    font-family: var(--pc-display);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 0.35rem;
}
.pc-journey p {
    color: var(--pc-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.pc-scope {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid var(--pc-line);
    border-left: 1px solid var(--pc-line);
}
@media (min-width: 720px) {
    .pc-scope {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1100px) {
    .pc-scope {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.pc-scope article {
    position: relative;
    min-height: 220px;
    padding: 1.4rem 1.3rem;
    background: rgba(255,255,255,0.45);
    border-right: 1px solid var(--pc-line);
    border-bottom: 1px solid var(--pc-line);
}
.pc-scope__mark {
    display: block;
    width: 28px;
    height: 5px;
    margin-bottom: 1.1rem;
    background: var(--pc-red);
    transform: skewX(-24deg);
}
.pc-scope h3 {
    font-family: var(--pc-display);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 0.65rem;
}
.pc-scope p {
    color: var(--pc-muted);
    font-size: 0.91rem;
    line-height: 1.6;
    margin: 0;
}

.pc-mobile {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 900px) {
    .pc-mobile {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
        gap: 4rem;
    }
}
.pc-mobile__plan {
    position: relative;
    padding: 1.35rem;
    color: #fff;
    background: var(--pc-charcoal);
    border: 1px solid #080808;
    box-shadow: 12px 12px 0 var(--pc-cream);
}
.pc-mobile__label {
    display: inline-block;
    margin-bottom: 1.1rem;
    padding: 0.3rem 0.55rem;
    color: #fff;
    background: var(--pc-red);
    font-family: var(--pc-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.pc-mobile__plan ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pc-mobile__plan li {
    display: flex;
    gap: 0.65rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    line-height: 1.45;
}
.pc-mobile__plan li span {
    color: #ff7064;
    font-weight: 800;
}

.pc-performance {
    color: #fff;
    background:
        radial-gradient(circle at 12% 10%, rgba(213,53,39,0.15), transparent 24%),
        #151514;
}
.pc-performance .pc-kicker {
    color: #ff7469;
}
.pc-performance .pc-h2 {
    color: #fff;
}
.pc-performance .pc-body {
    color: rgba(255,255,255,0.7);
}
.pc-performance__grid {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}
@media (min-width: 800px) {
    .pc-performance__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.pc-performance__grid article {
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.025);
}
.pc-performance__grid h3 {
    font-family: var(--pc-display);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.4rem;
}
.pc-performance__grid p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.pc-tech {
    background: var(--pc-cream);
}
.pc-tech__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.4rem;
}
.pc-tech__tags span {
    padding: 0.4rem 0.65rem;
    color: var(--pc-ink);
    background: var(--pc-paper);
    border: 1px solid var(--pc-line);
    font-size: 0.76rem;
    font-weight: 700;
}
.pc-tech__cta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
    padding-top: 2.25rem;
    border-top: 2px dashed rgba(29,27,24,0.2);
}
@media (min-width: 850px) {
    .pc-tech__cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.pc-tech__cta h3 {
    max-width: 27ch;
    font-family: var(--pc-display);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.pc-tech__cta p {
    max-width: 58ch;
    color: var(--pc-muted);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}
.pc-tech .pc-btn--line {
    color: var(--pc-ink);
    box-shadow: inset 0 0 0 1px rgba(29,27,24,0.3);
}
.pc-tech .pc-btn--line:hover {
    color: var(--pc-ink);
    background: rgba(29,27,24,0.05);
}

.pc-faq {
    margin-top: 1.5rem;
    border-top: 1px solid var(--pc-line);
}
.pc-faq details {
    border-bottom: 1px solid var(--pc-line);
    padding: 1rem 0;
}
.pc-faq summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--pc-display);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}
.pc-faq summary::-webkit-details-marker {
    display: none;
}
.pc-faq p {
    max-width: 68ch;
    color: var(--pc-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0.7rem 0 0;
}
.pc-related {
    border-top: 1px solid var(--pc-line);
}

@media (max-width: 639px) {
    .pc-hero {
        padding-bottom: 3rem;
    }
    .pc-preview {
        border-radius: 6px;
        transform: none;
    }
    .pc-ticket {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    .pc-scope article {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-btn {
        transition: none;
    }
    .pc-btn:hover {
        transform: none;
    }
}
