:root {
    --paper: #faf8f4;
    --paper-2: #f1ede3;
    --ink: #111014;
    --ink-soft: #3a3733;
    --mist: #726c63;
    --mist-dim: #a49d90;
    --line: #e3dccf;
    --ember: #8e1f1c;
    --ember-bright: #c9412f;
    --amber: #e3a730;
    --sig-r: #e4483c;
    --sig-g: #2fae66;
    --sig-b: #2f6fae;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

section,
header,
footer {
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--ember);
    color: #fff;
}

.mono {
    font-family: 'Space Mono', monospace;
}

.label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    display: flex;
    align-items: center;
    gap: 9px;
}

.label .dots {
    display: flex;
    gap: 3px;
}

.label .dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: block;
}

.label .dots span:nth-child(1) {
    background: var(--sig-r);
}

.label .dots span:nth-child(2) {
    background: var(--sig-g);
}

.label .dots span:nth-child(3) {
    background: var(--sig-b);
}

.label.on-dark {
    color: #ffcf8f;
}

h1,
h2,
h3 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
.slider-handle:focus-visible {
    outline: 2px solid var(--ember);
    outline-offset: 3px;
}

.sprockets {
    height: 16px;
    background: var(--ink);
    position: relative;
}

.sprockets::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--paper) 2.6px, transparent 2.9px);
    background-size: 26px 16px;
    background-position: 10px center;
}

.sprockets.on-paper::before {
    background-image: radial-gradient(circle, var(--ink) 2.6px, transparent 2.9px);
}

.sprockets.on-paper {
    background: var(--paper-2);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--ink);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
    flex-wrap: nowrap;
}

.logo-img {
    height: 68px;
    width: auto;
    flex-shrink: 0;
}

nav.links {
    display: flex;
    gap: 22px;
    align-items: center;
    min-width: 0;
}

nav.links a {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: color .2s ease;
}

nav.links a:hover {
    color: var(--ember);
}

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn-outline {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    border: 2px solid var(--ink);
    padding: 10px 16px;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}

.btn-solid {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ember);
    padding: 11px 18px;
    border: 2px solid var(--ember);
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-solid:hover {
    background: var(--ember-bright);
    border-color: var(--ember-bright);
}

.menu-toggle {
    display: none;
    flex-shrink: 0;
    background: none;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    border: 2px solid var(--ink);
    padding: 8px 13px;
    color: var(--ink);
    letter-spacing: 0.05em;
}

@media(max-width:1180px) {
    .nav-actions .btn-outline {
        display: none;
    }
}

@media(max-width:1040px) {
    nav.links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 16, 20, 0.6);
    backdrop-filter: blur(2px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(320px, 84vw);
    background: var(--paper);
    z-index: 200;
    box-shadow: -10px 0 34px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--ink);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 2px solid var(--ink);
    flex-shrink: 0;
}

.sidebar-head .logo-img {
    height: 70px;
}

.sidebar-close {
    font-family: 'Space Mono', monospace;
    font-size: 22px;
    background: none;
    border: 2px solid var(--ink);
    width: 38px;
    height: 38px;
    cursor: pointer;
    color: var(--ink);
    line-height: 1;
    flex-shrink: 0;
}

.sidebar-body {
    overflow-y: auto;
    flex: 1;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.sidebar-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease, background .2s ease;
}

.sidebar-links a:hover {
    color: var(--ember);
    background: var(--paper-2);
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-top: 2px solid var(--ink);
    flex-shrink: 0;
}

.sidebar-actions .btn-outline,
.sidebar-actions .btn-solid {
    text-align: center;
    width: 100%;
}

body.sidebar-open {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background: var(--ink);
    overflow: hidden;
}

@supports (height:100dvh) {
    .hero {
        min-height: 100dvh;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 100vh;
    min-height: 100svh;
}

@supports (height:100dvh) {
    .hero-grid {
        min-height: 100dvh;
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.hero-copy-panel {
    padding: 150px 48px 64px clamp(24px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at 8% 92%, rgba(142, 31, 28, 0.25), transparent 45%),
        var(--ink);
}

@media (max-width:660px) {
    .hero-copy-panel {
        padding: 80px 15px 20px 15px;
    }

    .hero .btn-primary,
    .hero .btn-ghost-light {
        padding: 13px 20px;
    }

    .hero .cta-row {
        margin-bottom: 30px;
    }

    .hero .flap-row {
        gap: 15px;
    }

    .hero .flap-row .flap-chars span {
        font-size: 17px;
        padding: 4px 5px;
    }
}

.hero-copy {
    max-width: 560px;
    opacity: 0;
    animation: riseIn .8s ease-out .25s forwards;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 0.98;
    color: #fff;
    margin: 20px 0 26px;
}

.hero h1 .on-air {
    color: var(--ember-bright);
}

.hero p.lede {
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin-bottom: 32px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 44px;
}

.btn-primary {
    background: var(--ember);
    color: #fff;
    padding: 16px 26px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid var(--ember);
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--ember-bright);
    border-color: var(--ember-bright);
    transform: translateY(-2px);
}

.btn-ghost-light {
    padding: 16px 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all .25s ease;
}

.btn-ghost-light:hover {
    border-color: #fff;
}

.flap-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.flap-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flap-chars {
    display: flex;
    gap: 2px;
}

.flap-chars span {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 19px;
    color: #fff;
    background: #000;
    border: 1px solid #2a2a2a;
    padding: 5px 6px;
    min-width: 15px;
    text-align: center;
    border-radius: 2px;
}

.flap-lbl {
    font-family: 'Oswald', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mist-dim);
}

.hero-media {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media(min-width:901px) {
    .hero-media {
        clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@media(max-width:900px) {
    .hero-media {
        height: 46vh;
        min-height: 280px;
    }
}

.hero-media video,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 16, 20, 0.55), transparent 40%);
}

.on-air-badge {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.on-air-badge .rec {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ember-bright);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.filmstrip {
    background: var(--ink);
    overflow: hidden;
    position: relative;
    padding: 14px 0;
}

.filmstrip-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: reel 40s linear infinite;
}

@keyframes reel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.filmstrip-frame {
    width: 150px;
    height: 100px;
    border-left: 2px solid var(--paper);
    position: relative;
    flex-shrink: 0;
}

.filmstrip-frame img,
.filmstrip-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}

section {
    position: relative;
    padding: 104px 0;
}

@media(max-width:640px) {
    section {
        padding: 68px 0;
    }
}

.alt {
    background: var(--paper-2);
}

.section-head {
    max-width: 620px;
    margin-bottom: 52px;
}

.section-head h2 {
    font-size: clamp(26px, 3.6vw, 42px);
    margin-top: 14px;
    line-height: 1.05;
}

.section-head p {
    color: var(--mist);
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .label {
    justify-content: center;
}

.frame-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media(max-width:860px) {
    .frame-row {
        grid-template-columns: 1fr;
    }
}

.frame-card {
    background: var(--ink);
    padding: 10px;
}

.frame-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--ink);
}

.frame-media img,
.frame-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.frame-card:hover .frame-media img,
.frame-card:hover .frame-media video {
    transform: scale(1.05);
}

.frame-num {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ember);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 9px;
}

.frame-copy {
    padding: 20px 14px 12px;
}

.frame-copy h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.frame-copy p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    line-height: 1.55;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media(max-width:900px) {
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--ink);
}

.gallery-tile:nth-child(odd) {
    transform: translateY(-14px);
}

@media(max-width:900px) {
    .gallery-tile:nth-child(odd) {
        transform: none;
    }
}

.gallery-tile .media {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.gallery-tile img,
.gallery-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-tile:hover img,
.gallery-tile:hover video {
    transform: scale(1.08);
}

.gallery-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Oswald', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
}

.play-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ember);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.scoreboard {
    background: var(--ink);
    padding: 64px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-image: linear-gradient(var(--ink), var(--ink));
    border: 1px solid #2b2a2f;
}

@media(max-width:860px) {
    .scoreboard {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

.score-cell {
    padding: 20px;
    border-right: 1px dashed #38363c;
    text-align: center;
}

.scoreboard>.score-cell:last-child,
.scoreboard>.score-cell:nth-child(2n) {
    border-right: none;
}

@media(min-width:861px) {
    .scoreboard>.score-cell:nth-child(2n) {
        border-right: 1px dashed #38363c;
    }

    .scoreboard>.score-cell:last-child {
        border-right: none;
    }
}

.score-flap {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.score-flap span {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 30px;
    color: var(--amber);
    background: #000;
    border: 1px solid #2a2a2a;
    padding: 6px 8px;
    border-radius: 3px;
    min-width: 20px;
}

.score-cell p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}

.compare-frame {
    background: var(--ink);
    padding: 14px;
    width: 100%;
}

.compare-wrap {
    position: relative;
    width: 100%;
    border: 2px solid var(--ink);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
    height: clamp(280px, 38vw, 560px);
}

@media(max-width:640px) {
    .compare-wrap {
        height: clamp(340px, 110vw, 480px);
    }
}

.compare-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.compare-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.layer-poster img {
    filter: grayscale(0.85) brightness(0.75) contrast(0.95);
}

.compare-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--paper);
    color: var(--ink);
    white-space: nowrap;
}

.layer-led {
    clip-path: inset(0 0 0 50%);
}

.layer-led .compare-tag {
    background: var(--ember);
    color: #fff;
    left: auto;
    right: 18px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--amber);
    transform: translateX(-1.5px);
    z-index: 5;
}

.slider-handle::after {
    content: '◂▸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.ticket {
    border: 2px dashed var(--ink);
    position: relative;
    background: var(--paper);
    width: 100%;
}

.ticket::before,
.ticket::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--paper-2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.ticket::before {
    left: -12px;
}

.ticket::after {
    right: -12px;
}

.spec-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    border-bottom: 1px dashed var(--line);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row>div {
    padding: 18px 26px;
    font-size: 14px;
}

.spec-row.head {
    background: var(--ink);
}

.spec-row.head>div {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

.spec-row:not(.head)>div:first-child {
    color: var(--mist);
    font-size: 13px;
}

.spec-row:not(.head)>div:nth-child(2) {
    font-family: 'Space Mono', monospace;
    border-left: 1px dashed var(--line);
}

.spec-row:not(.head)>div:nth-child(3) {
    color: var(--ember);
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    border-left: 1px dashed var(--line);
}

@media(max-width:620px) {
    .spec-row.head {
        display: none;
    }

    .spec-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "label label" "film glass";
    }

    .spec-row>div:first-child {
        grid-area: label;
        background: var(--ink);
        color: #fff;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-family: 'Oswald', sans-serif;
        padding: 10px 16px;
    }

    .spec-row>div:nth-child(2) {
        grid-area: film;
        border-left: none;
        padding: 14px 16px;
    }

    .spec-row>div:nth-child(3) {
        grid-area: glass;
        padding: 14px 16px;
    }

    .spec-row>div:nth-child(2)::before {
        content: 'LED Film';
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 10px;
        color: var(--mist-dim);
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .spec-row>div:nth-child(3)::before {
        content: 'LED Glass';
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 10px;
        color: var(--mist-dim);
        text-transform: uppercase;
        margin-bottom: 4px;
    }
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 8px 0 56px;
    flex-wrap: wrap;
}

.toggle-row span {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mist);
}

.toggle-row span.active {
    color: var(--ink);
}

.toggle {
    width: 50px;
    height: 28px;
    border-radius: 20px;
    background: var(--paper-2);
    border: 2px solid var(--ink);
    position: relative;
    cursor: pointer;
}

.toggle .dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ink);
    transition: transform .25s ease;
}

.toggle.yearly .dot {
    transform: translateX(20px);
    background: var(--ember);
}

.save-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    color: var(--ember);
    background: #fbeceb;
    padding: 4px 9px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 20px;
    padding-top: 16px;
}

@media(max-width:980px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

.tag-card {
    position: relative;
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 36px 24px 26px;
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
}

.tag-card:nth-child(1) {
    transform: rotate(-1.2deg);
}

.tag-card:nth-child(2) {
    transform: rotate(0.8deg);
}

.tag-card:nth-child(3) {
    transform: rotate(-0.6deg);
}

.tag-card:nth-child(4) {
    transform: rotate(1.1deg);
}

.tag-card:hover {
    transform: rotate(0deg) translateY(-4px);
}

.tag-card::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--ink);
}

.tag-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 16px;
    background: var(--ink);
}

.tag-card.popular {
    border-color: var(--ember);
    border-width: 3px;
}

.tag-card.custom {
    background: linear-gradient(180deg, #fbf1de, var(--paper) 45%);
    border-color: var(--amber);
}

.plan-badge {
    position: absolute;
    top: 14px;
    right: -8px;
    background: var(--ink);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
}

.plan-badge.gold {
    background: var(--amber);
}

.plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    color: var(--mist);
}

.plan-price {
    font-family: 'Space Mono', monospace;
    font-size: 38px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price .cur {
    font-size: 18px;
    color: var(--mist);
}

.plan-price .per {
    font-size: 12px;
    color: var(--mist);
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}

.plan-desc {
    color: var(--mist);
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 0 18px;
    min-height: 52px;
}

.plan-divider {
    height: 1px;
    border-top: 1px dashed var(--line);
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    flex: 1;
}

.plan-features li {
    font-size: 13px;
    color: var(--ink-soft);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    color: var(--ember);
    font-weight: 700;
    flex-shrink: 0;
}

.plan-cta {
    text-align: center;
    padding: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--ink);
    color: var(--ink);
    transition: all .2s ease;
}

.plan-cta:hover {
    background: var(--ink);
    color: #fff;
}

.tag-card.popular .plan-cta {
    background: var(--ember);
    border-color: var(--ember);
    color: #fff;
}

.tag-card.custom .plan-cta {
    border-color: var(--amber);
    color: var(--amber);
}

.tag-card.custom .plan-cta:hover {
    background: var(--amber);
    color: #fff;
}

.panel-shell {
    background: var(--ink);
    border: 2px solid var(--ink);
    overflow: hidden;
    width: 100%;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media(max-width:800px) {
    .panel-grid {
        grid-template-columns: 1fr;
    }
}

.panel-col {
    padding: 36px;
    border-right: 1px solid #2b2a2f;
}

@media(max-width:800px) {
    .panel-col {
        border-right: none;
        border-bottom: 1px solid #2b2a2f;
    }
}

.panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2b2a2f;
}

.panel-icon {
    width: 34px;
    height: 34px;
    background: var(--ember);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.panel-head h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.cfield {
    margin-bottom: 18px;
}

.cfield label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.cfield select,
.cfield input {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #3a383e;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #fff;
    background: #1b1a1f;
}

.cfield-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.calc-add-btn {
    width: 100%;
    padding: 14px;
    background: var(--ember);
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease;
    margin-top: 6px;
}

.calc-add-btn:hover {
    background: var(--ember-bright);
}

.calc-result {
    background: #1b1a1f;
    padding: 36px;
    border-top: 1px solid #2b2a2f;
}

.calc-result .rlabel {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.calc-total {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 38px;
    color: var(--amber);
    margin: 10px 0 16px;
}

.calc-line-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.calc-line-item {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    padding-bottom: 8px;
    border-bottom: 1px dashed #333;
}

.calc-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.industry-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.industry-card {
    flex: 0 0 250px;
    border: 2px solid var(--ink);
    background: var(--paper);
}

.industry-card:nth-child(even) {
    margin-top: 22px;
}

@media(max-width:640px) {
    .industry-card:nth-child(even) {
        margin-top: 0;
    }
}

.industry-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}

.industry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.industry-card:hover .industry-media img {
    transform: scale(1.06);
}

.industry-copy {
    padding: 18px;
}

.industry-copy .tag {
    font-family: 'Oswald', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ember);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.industry-copy h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    margin: 8px 0 8px;
    text-transform: uppercase;
}

.industry-copy p {
    font-size: 12.5px;
    color: var(--mist);
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-side {
    background: var(--ink);
    color: #fff;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://digitalfilmmarketing.com/assets/img/home-02/new/four.jpg') center/cover;
    opacity: 0.16;
}

.contact-side>* {
    position: relative;
    z-index: 1;
}

.contact-side h3 {
    font-size: 24px;
    color: #fff;
    margin: 16px 0 16px;
    line-height: 1.15;
}

.contact-side p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
}

.contact-detail {
    margin-bottom: 18px;
}

.contact-detail .lbl {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-detail .val {
    font-size: 14.5px;
    margin-top: 6px;
    font-family: 'Space Mono', monospace;
}

.contact-form {
    padding: 44px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-left: none;
}

@media(max-width:900px) {
    .contact-form {
        border-left: 2px solid var(--ink);
        border-top: none;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-grid .full {
    grid-column: 1/-1;
}

.contact-form .cfield label {
    color: var(--ink-soft);
}

.contact-form .cfield select,
.contact-form .cfield input,
.contact-form textarea {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    font-family: 'Manrope', sans-serif;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 92px;
}

.consent {
    font-size: 11px;
    color: var(--mist-dim);
    line-height: 1.5;
    margin: 14px 0 18px;
}

.consent a {
    color: var(--ember);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--ember);
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease;
}

.submit-btn:hover {
    background: var(--ember-bright);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success .check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbeceb;
    color: var(--ember);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--mist);
    font-size: 13.5px;
    font-family: 'Manrope', sans-serif;
}

footer {
    background: var(--ink);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

@media(max-width:760px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-grid h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    margin-bottom: 11px;
    transition: color .2s ease;
    font-family: 'Manrope', sans-serif;
}

.footer-grid a:hover {
    color: var(--ember-bright);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #2b2a2f;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Space Mono', monospace;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}