:root {
    --acid: #cfff00;
    --acid-deep: #a9cc00;
    --olive: #758313;
    --ink: #080a05;
    --paper: #f3f0da;
    --paper-bright: #fffdf0;
    --warning: #ff5a36;
    --line: 3px solid var(--ink);
    --shadow: 8px 8px 0 var(--ink);
    --font-display: "Barlow Condensed", Impact, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --scroll-progress: 0%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
    overflow-x: hidden;
    background: var(--ink);
}

section[id] {
    scroll-margin-top: 104px;
}

body {
    margin: 0;
    color: var(--ink);
    background-color: var(--paper);
    background-image: radial-gradient(rgba(8, 10, 5, 0.1) 0.75px, transparent 0.75px);
    background-size: 7px 7px;
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: 0.16;
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0, rgba(0, 0, 0, 0.06) 1px, transparent 1px, transparent 4px);
    mix-blend-mode: multiply;
    animation: projectorFlicker 5s steps(2, end) infinite;
}

a {
    color: inherit;
}

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

.ink-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 4% 8%, rgba(8, 10, 5, 0.2) 0 1px, transparent 2px),
        radial-gradient(circle at 94% 33%, rgba(8, 10, 5, 0.16) 0 1px, transparent 2px);
    background-size: 16px 16px, 23px 23px;
}

.safety-tape {
    min-height: 38px;
    padding: 7px clamp(18px, 4vw, 64px);
    color: var(--acid);
    background: var(--ink);
    border-bottom: 2px solid var(--acid);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.safety-tape p {
    margin: 0;
}

.safety-tape a {
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.site-header {
    min-height: 88px;
    padding: 12px clamp(18px, 4vw, 64px);
    background: var(--paper-bright);
    border-bottom: var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header::after {
    content: "";
    width: var(--scroll-progress);
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--acid);
    border-right: 3px solid var(--ink);
    pointer-events: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    width: 56px;
    height: 56px;
    border: 3px solid var(--ink);
    border-radius: 50%;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong,
.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.brand-copy small {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

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

.main-nav a,
.header-x {
    font-family: var(--font-display);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a {
    padding: 8px 0 4px;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    border-color: var(--ink);
}

.header-x {
    padding: 11px 16px;
    background: var(--acid);
    border: var(--line);
    box-shadow: 4px 4px 0 var(--ink);
    white-space: nowrap;
}

.header-x-short {
    display: none;
}

.comic-section {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

.hero {
    min-height: 720px;
    padding: clamp(42px, 6vw, 90px) clamp(20px, 4vw, 64px);
    background: var(--acid);
    border-inline: var(--line);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    align-items: center;
    gap: clamp(38px, 6vw, 90px);
    overflow: hidden;
}

.hero::before,
.signals-section::before {
    content: "";
    width: 310px;
    height: 310px;
    position: absolute;
    top: -150px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ink) 1.2px, transparent 1.6px);
    background-size: 8px 8px;
    transform: rotate(18deg);
    opacity: 0.5;
    animation: halftoneDrift 9s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -75px;
    width: 230px;
    height: 180px;
    background: var(--ink);
    clip-path: polygon(0 26%, 100% 0, 79% 100%, 10% 78%);
}

.hero-copy,
.hero-panel {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.issue-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ink);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.kicker,
.eyebrow,
.panel-scene {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kicker {
    width: fit-content;
    margin: 38px 0 14px;
    padding: 6px 10px;
    color: var(--acid);
    background: var(--ink);
    font-size: 0.78rem;
    transform: rotate(-1deg);
}

.hero h1,
.section-heading h2,
.next-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.86;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(4.4rem, 8.2vw, 8.8rem);
}

.hero h1 span {
    display: block;
}

.headline-block {
    width: fit-content;
    margin-top: 8px;
    padding: 2px 12px 10px;
    color: var(--acid);
    background: var(--ink);
    transform: rotate(-1.2deg);
}

.hero-lede {
    max-width: 600px;
    margin: 30px 0;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.comic-button {
    min-height: 52px;
    padding: 13px 20px;
    border: var(--line);
    box-shadow: 5px 5px 0 var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 140ms ease, box-shadow 140ms ease;
}

.comic-button:hover,
.comic-button:focus-visible {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--ink);
}

.comic-button-dark {
    color: var(--acid);
    background: var(--ink);
}

.comic-button-paper {
    background: var(--paper-bright);
}

.comic-button-acid {
    background: var(--acid);
}

.launch-stamp {
    width: fit-content;
    margin-top: 34px;
    padding: 12px 16px;
    border: 3px dashed var(--ink);
    display: flex;
    flex-direction: column;
    transform: rotate(1deg);
    animation: stampPulse 3.2s ease-in-out infinite;
}

.launch-stamp strong {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-style: italic;
    line-height: 1;
}

.launch-stamp span {
    font-size: 0.73rem;
    font-weight: 700;
}

.hero-panel {
    margin: 0;
    padding: 12px;
    background: var(--paper-bright);
    border: 4px solid var(--ink);
    box-shadow: 14px 14px 0 var(--ink);
    transform: rotate(1.3deg);
    transform-origin: center;
    transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.hero-panel[data-reveal].is-visible {
    transform: perspective(900px) rotateX(var(--panel-tilt-x, 0deg)) rotateY(var(--panel-tilt-y, 0deg)) rotateZ(1.3deg);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 12px;
    pointer-events: none;
    background: radial-gradient(transparent 48%, rgba(8, 10, 5, 0.26));
    mix-blend-mode: multiply;
}

.hero-panel img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 3px solid var(--ink);
    object-fit: cover;
    filter: saturate(0.88) contrast(1.06);
}

.panel-label {
    position: absolute;
    top: -19px;
    left: 18px;
    z-index: 2;
    padding: 5px 10px;
    color: var(--acid);
    background: var(--ink);
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.hero-panel figcaption {
    padding: 14px 8px 5px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.hero-panel figcaption strong {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 900;
}

.hero-panel figcaption span {
    font-size: 0.78rem;
    font-weight: 700;
    text-align: right;
}

.speech-bubble {
    position: absolute;
    top: -48px;
    right: -26px;
    z-index: 3;
    padding: 18px 20px;
    background: var(--paper-bright);
    border: var(--line);
    border-radius: 50%;
    box-shadow: 5px 5px 0 var(--ink);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-style: italic;
    font-weight: 900;
    transform: rotate(8deg);
    animation: bubbleBounce 2.4s ease-in-out infinite;
}

.comic-marquee {
    color: var(--acid);
    background: var(--ink);
    border-block: 3px solid var(--ink);
    overflow: hidden;
}

.marquee-track {
    width: max-content;
    padding: 13px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0.1em;
    animation: marquee 22s linear infinite;
}

.marquee-track i {
    font-style: normal;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.brand-poster {
    margin-block: clamp(54px, 7vw, 100px);
    padding: 14px;
    background: var(--paper-bright);
    border: var(--line);
    box-shadow: var(--shadow);
    position: relative;
}

.brand-poster img {
    width: 100%;
    border: 2px solid var(--ink);
}

.brand-poster p {
    margin: 12px 2px 0;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.section-number {
    position: absolute;
    top: -30px;
    right: 20px;
    z-index: 2;
    padding: 2px 12px;
    color: var(--acid);
    background: var(--ink);
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    font-weight: 900;
}

.film-section,
.signals-section {
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
    border: var(--line);
    position: relative;
}

.film-section {
    background: var(--paper-bright);
}

.section-heading {
    margin-bottom: clamp(38px, 6vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    align-items: end;
    gap: 36px;
}

.section-heading h2,
.next-copy h2 {
    font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.section-heading h2 em {
    color: var(--acid-deep);
}

.section-heading > p {
    margin: 0;
    padding: 18px 0 2px 18px;
    border-left: 4px solid var(--ink);
    font-weight: 600;
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    font-size: 0.76rem;
}

.film-frame {
    padding: 14px;
    color: var(--ink);
    background: var(--acid);
    border: 4px solid var(--ink);
    box-shadow: 12px 12px 0 var(--ink);
    display: block;
    position: relative;
}

.video-shell {
    aspect-ratio: 16 / 9;
    background: var(--ink);
    border: 3px solid var(--ink);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

.journey-launch {
    margin: 0;
    padding: 24px;
    position: absolute;
    inset: 0;
    z-index: 2;
    appearance: none;
    border: 0;
    color: var(--acid);
    background: linear-gradient(rgba(8, 10, 5, 0.3), rgba(8, 10, 5, 0.76));
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: opacity 240ms ease, background 180ms ease;
}

.journey-launch::before,
.journey-launch::after {
    content: "";
    width: 132px;
    height: 132px;
    position: absolute;
    border: 3px solid var(--acid);
    border-radius: 50%;
    opacity: 0.55;
    animation: playRing 2.2s ease-out infinite;
}

.journey-launch::after {
    animation-delay: 1.1s;
}

.journey-launch:hover,
.journey-launch:focus-visible {
    background: linear-gradient(rgba(8, 10, 5, 0.2), rgba(8, 10, 5, 0.64));
}

.journey-launch:focus-visible {
    outline: 4px solid var(--paper-bright);
    outline-offset: -8px;
}

.launch-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 4px;
    color: var(--ink);
    background: var(--acid);
    border: 4px solid var(--ink);
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--acid), 0 0 0 10px var(--ink);
    display: grid;
    place-items: center;
    font-size: 2rem;
    line-height: 1;
    text-indent: 5px;
    transform: rotate(-6deg);
    transition: transform 160ms ease;
}

.journey-launch:hover .launch-icon,
.journey-launch:focus-visible .launch-icon {
    transform: rotate(2deg) scale(1.07);
}

.journey-launch b,
.journey-launch small {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 0 var(--ink);
}

.journey-launch b {
    font-size: clamp(2rem, 5vw, 5.4rem);
    font-style: italic;
    letter-spacing: -0.025em;
}

.journey-launch small {
    font-size: clamp(0.65rem, 1.4vw, 0.9rem);
    letter-spacing: 0.15em;
}

.film-grain {
    position: absolute;
    inset: -20%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 20% 30%, #fff 0 0.6px, transparent 0.9px),
        radial-gradient(circle at 70% 60%, #000 0 0.7px, transparent 1px);
    background-size: 7px 7px, 11px 11px;
    mix-blend-mode: overlay;
    animation: grainShift 0.35s steps(2, end) infinite;
}

.film-player.has-started .journey-launch {
    opacity: 0;
    pointer-events: none;
}

.frame-caption {
    padding: 14px 6px 2px;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0.025em;
}

.film-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.film-caption a {
    flex: 0 0 auto;
    padding: 8px 11px;
    color: var(--acid);
    background: var(--ink);
    border: 2px solid var(--ink);
    font-size: 0.72em;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.story-section {
    margin-block: clamp(54px, 7vw, 100px);
    padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
    color: var(--paper-bright);
    background: var(--ink);
    border: 3px solid var(--ink);
}

.section-heading-dark h2 em {
    color: var(--acid);
}

.section-heading-dark > p {
    border-color: var(--acid);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
}

.story-panel {
    min-height: 320px;
    padding: 28px;
    color: var(--ink);
    background: var(--paper-bright);
    border: 4px solid var(--paper-bright);
    box-shadow: 8px 8px 0 var(--acid);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.story-panel:nth-child(1) { grid-column: span 7; }
.story-panel:nth-child(2) { grid-column: span 5; transform: translateY(22px) rotate(0.7deg); }
.story-panel:nth-child(3) { grid-column: span 5; }
.story-panel:nth-child(4) { grid-column: span 7; transform: translateY(22px) rotate(-0.6deg); }

.story-panel h3 {
    margin: auto 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.story-panel > p:not(.panel-scene) {
    max-width: 600px;
    margin: 0;
    font-weight: 600;
}

.panel-index {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 900;
    opacity: 0.22;
}

.panel-scene {
    margin: 0;
    font-size: 0.72rem;
}

.story-panel blockquote {
    width: fit-content;
    margin: 24px 0 0 auto;
    padding: 12px 16px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-style: italic;
    font-weight: 800;
    transform: rotate(-3deg);
}

.story-panel.acid {
    background: var(--acid);
    border-color: var(--acid);
}

.story-panel.black {
    color: var(--acid);
    background: #15170e;
    border-color: var(--acid);
}

.story-panel.black a {
    width: fit-content;
    margin-top: 24px;
    font-family: var(--font-display);
    font-weight: 900;
}

.image-panel {
    min-height: 420px;
    padding: 0;
    background: var(--acid);
    border-color: var(--acid);
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.image-panel > div {
    position: absolute;
    inset: auto 18px 18px;
    padding: 16px;
    background: var(--paper-bright);
    border: var(--line);
}

.image-panel h3 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.signals-section {
    background: var(--acid);
    overflow: hidden;
}

.signals-section > * {
    position: relative;
    z-index: 1;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 4px solid var(--ink);
}

.signal-card {
    min-height: 250px;
    padding: 24px;
    background: var(--paper-bright);
    border-right: 3px solid var(--ink);
    display: flex;
    flex-direction: column;
}

.signal-card:last-child {
    border-right: none;
}

.signal-card > span {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 900;
    opacity: 0.25;
}

.signal-card small {
    margin-top: auto;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.signal-card strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-style: italic;
    font-weight: 900;
    line-height: 0.9;
}

.signal-card p {
    margin: 10px 0 0;
    font-size: 0.76rem;
    font-weight: 700;
}

.signal-card.pending {
    color: var(--paper-bright);
    background: var(--ink);
}

.scam-warning {
    margin-top: 42px;
    padding: 22px;
    color: var(--paper-bright);
    background: var(--ink);
    border: 4px solid var(--ink);
    box-shadow: 8px 8px 0 var(--paper-bright);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
}

.scam-warning b {
    color: var(--acid);
    font-family: var(--font-display);
    font-size: 3rem;
    font-style: italic;
    font-weight: 900;
}

.scam-warning p {
    margin: 0;
    font-weight: 700;
}

.scam-warning a {
    color: var(--acid);
}

.next-section {
    margin-block: clamp(54px, 7vw, 100px);
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    border: var(--line);
    box-shadow: var(--shadow);
}

.next-copy {
    padding: clamp(48px, 7vw, 100px) clamp(22px, 5vw, 78px);
    background: var(--paper-bright);
}

.next-copy p {
    max-width: 580px;
    margin: 28px 0;
    font-weight: 600;
}

.next-visual {
    min-height: 560px;
    padding: 30px;
    color: var(--acid);
    background: var(--ink);
    background-image: radial-gradient(rgba(207, 255, 0, 0.38) 1px, transparent 1.7px);
    background-size: 9px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.big-word {
    font-family: var(--font-display);
    font-size: clamp(7rem, 17vw, 16rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.7;
    transform: rotate(-8deg);
}

.small-word {
    margin-top: 54px;
    padding: 8px 12px;
    color: var(--ink);
    background: var(--acid);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.site-footer {
    padding: 34px clamp(18px, 4vw, 64px);
    color: var(--paper-bright);
    background: var(--ink);
    border-top: 4px solid var(--acid);
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.8fr) auto;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    border: 2px solid var(--acid);
    border-radius: 50%;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand span,
.site-footer p,
.site-footer > a {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.site-footer p {
    margin: 0;
    color: #bcbea9;
}

.site-footer > a {
    color: var(--acid);
    text-decoration: none;
    white-space: nowrap;
}

.hero-copy.is-visible .kicker {
    animation: inkSwipe 460ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy.is-visible h1 > span:first-child {
    animation: titleDrop 620ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy.is-visible .headline-block {
    animation: blockStrike 640ms 170ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.story-panel h3 {
    transition: transform 180ms ease;
}

.story-panel:hover h3 {
    transform: translateX(7px);
}

.signal-grid.is-visible .signal-card {
    animation: cardPop 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.signal-grid.is-visible .signal-card:nth-child(2) { animation-delay: 80ms; }
.signal-grid.is-visible .signal-card:nth-child(3) { animation-delay: 160ms; }
.signal-grid.is-visible .signal-card:nth-child(4) { animation-delay: 240ms; }

.next-visual.is-visible .big-word {
    animation: reelWobble 3.4s ease-in-out infinite;
}

@keyframes projectorFlicker {
    0%, 23%, 100% { opacity: 0.14; }
    24%, 27% { opacity: 0.2; }
    28%, 71% { opacity: 0.15; }
    72%, 74% { opacity: 0.09; }
}

@keyframes halftoneDrift {
    from { transform: translate3d(-8px, -4px, 0) rotate(14deg); }
    to { transform: translate3d(16px, 12px, 0) rotate(22deg); }
}

@keyframes stampPulse {
    0%, 100% { transform: rotate(1deg) scale(1); }
    50% { transform: rotate(-0.4deg) scale(1.018); }
}

@keyframes bubbleBounce {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-7px) rotate(5deg); }
}

@keyframes playRing {
    0% { opacity: 0.58; transform: scale(0.62); }
    72%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes grainShift {
    0% { transform: translate3d(-2%, -1%, 0); }
    50% { transform: translate3d(2%, 1.5%, 0); }
    100% { transform: translate3d(-1%, 2%, 0); }
}

@keyframes inkSwipe {
    from { opacity: 0; transform: translateX(-28px) rotate(-4deg); }
    to { opacity: 1; transform: translateX(0) rotate(-1deg); }
}

@keyframes titleDrop {
    from { opacity: 0; transform: translateY(-26px) skewX(-7deg); }
    to { opacity: 1; transform: translateY(0) skewX(0); }
}

@keyframes blockStrike {
    from { opacity: 0; transform: translateX(48px) rotate(2deg); }
    to { opacity: 1; transform: translateX(0) rotate(-1.2deg); }
}

@keyframes cardPop {
    from { opacity: 0; transform: translateY(22px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes reelWobble {
    0%, 100% { transform: rotate(-8deg) scale(1); }
    50% { transform: rotate(-5.5deg) scale(1.035); }
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-panel:nth-child(2).is-visible {
    transform: translateY(22px) rotate(0.7deg);
}

.story-panel:nth-child(4).is-visible {
    transform: translateY(22px) rotate(-0.6deg);
}

@media (max-width: 1080px) {
    .main-nav { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-copy { max-width: 800px; }
    .hero-panel { width: min(900px, 96%); margin-inline: auto; }
    .signal-grid { grid-template-columns: repeat(2, 1fr); }
    .signal-card:nth-child(2) { border-right: none; }
    .signal-card:nth-child(-n + 2) { border-bottom: 3px solid var(--ink); }
    .next-section { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr auto; }
    .site-footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
    .safety-tape {
        padding: 9px 14px;
        align-items: center;
        flex-direction: column;
        gap: 2px;
        font-size: 0.61rem;
        text-align: center;
    }
    .site-header {
        min-height: 76px;
        padding: 9px 14px;
        gap: 10px;
    }
    .brand { gap: 8px; }
    .brand img { width: 46px; height: 46px; }
    .brand-copy strong { font-size: 1.08rem; }
    .brand-copy small { font-size: 0.48rem; }
    .header-x { padding: 9px 11px; }
    .header-x-full { display: none; }
    .header-x-short { display: inline; }
    .comic-section { width: calc(100% - 24px); }
    .hero {
        min-height: auto;
        padding: 44px 16px 62px;
        gap: 52px;
    }
    .hero h1 { font-size: clamp(3.05rem, 16vw, 4.75rem); }
    .hero-lede { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; }
    .comic-button { width: 100%; }
    .launch-stamp { width: 100%; }
    .hero-panel { width: 100%; padding: 8px; box-shadow: 8px 8px 0 var(--ink); transform: rotate(0.4deg); }
    .speech-bubble { top: -34px; right: -4px; padding: 12px 14px; font-size: 0.9rem; box-shadow: 3px 3px 0 var(--ink); }
    .hero-panel figcaption { align-items: flex-start; flex-direction: column; gap: 2px; }
    .hero-panel figcaption span { text-align: left; }
    .brand-poster { padding: 7px; box-shadow: 6px 6px 0 var(--ink); }
    .brand-poster img { min-height: 0; height: auto; object-fit: contain; }
    .brand-poster p { font-size: 0.62rem; letter-spacing: 0.08em; }
    .film-section,
    .signals-section,
    .story-section { padding: 58px 16px; }
    .section-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
    .section-heading h2,
    .next-copy h2 { font-size: clamp(3.4rem, 18vw, 5.2rem); }
    .section-heading > p { padding: 0 0 0 14px; }
    .film-frame { padding: 7px; box-shadow: 7px 7px 0 var(--ink); }
    .launch-icon { width: 58px; height: 58px; font-size: 1.35rem; box-shadow: 0 0 0 4px var(--acid), 0 0 0 7px var(--ink); }
    .journey-launch { padding: 10px; gap: 4px; }
    .journey-launch::before,
    .journey-launch::after { width: 82px; height: 82px; }
    .journey-launch b { font-size: clamp(1.55rem, 9vw, 2.8rem); }
    .journey-launch small { font-size: 0.54rem; letter-spacing: 0.1em; }
    .film-caption { align-items: flex-start; flex-direction: column; gap: 10px; }
    .film-caption a { width: 100%; text-align: center; }
    .story-grid { grid-template-columns: 1fr; }
    .story-panel,
    .story-panel:nth-child(1),
    .story-panel:nth-child(2),
    .story-panel:nth-child(3),
    .story-panel:nth-child(4) {
        grid-column: auto;
        min-height: 300px;
        transform: none;
    }
    .story-panel:nth-child(2).is-visible,
    .story-panel:nth-child(4).is-visible { transform: none; }
    .signal-grid { grid-template-columns: 1fr; }
    .signal-card,
    .signal-card:nth-child(2) { border-right: none; border-bottom: 3px solid var(--ink); }
    .signal-card:last-child { border-bottom: none; }
    .scam-warning { grid-template-columns: 1fr; gap: 4px; box-shadow: 6px 6px 0 var(--paper-bright); }
    .next-copy { padding: 58px 18px; }
    .next-visual { min-height: 360px; }
    .big-word { font-size: 8.2rem; }
    .site-footer { grid-template-columns: 1fr; align-items: start; }
    .site-footer p { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    .js [data-reveal] { opacity: 1; transform: none; transition: none; }
    .hero-panel[data-reveal].is-visible { transform: rotate(0.4deg); }
    .story-panel:nth-child(2),
    .story-panel:nth-child(4) { transform: none; }
}
