:root {
    --bg: #f8f8f8;
    --surface: #ffffff;
    --surface-soft: #f1f1f1;
    --line: #111111;
    --line-soft: #e6d2e5;
    --text: #111314;
    --muted: #5e5b60;
    --magenta: #c900d4;
    --cyan: #00818a;
    --yellow: #ffdd38;
    --green: #13a85f;
    --error: #ba1a1a;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 96px),
        var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 86px;
    padding: 0 64px;
    background: rgba(248, 248, 248, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
}

.brand img {
    max-height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-links a,
.lang-switch,
.quote-link,
.icon-link,
.btn-primary,
.btn-secondary,
.chip,
.meta,
.eyebrow {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 86px;
    border-bottom: 3px solid transparent;
    color: #241523;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--magenta);
    border-bottom-color: var(--magenta);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.lang-switch,
.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border: 1px solid transparent;
}

.lang-switch:hover,
.icon-link:hover {
    border-color: var(--line);
    background: var(--surface);
}

.whatsapp-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.whatsapp-mini svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.quote-link,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid var(--line);
    background: var(--magenta);
    color: #fff;
    box-shadow: 4px 4px 0 var(--line);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--line);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.press-scan {
    position: fixed;
    inset: 86px 0 auto 0;
    height: 0;
    z-index: 45;
    pointer-events: none;
    animation: scanLayerOut .12s linear 2.3s forwards;
}

.press-rail {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17,17,17,.18), transparent);
    transform: translateY(-1px);
}

.print-head {
    position: absolute;
    top: -8px;
    left: -90px;
    width: 82px;
    height: 17px;
    border: 1px solid var(--line);
    background:
        linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, var(--line) 75% 100%);
    box-shadow: 4px 4px 0 var(--line);
    animation: printHeadSweep 1.8s cubic-bezier(.65,0,.25,1) .25s forwards;
}

.print-head::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,0,212,.55), transparent);
}

.paper-roll {
    position: absolute;
    top: -11px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background:
        repeating-conic-gradient(from 0deg, #fff 0deg 28deg, #e9e9e9 28deg 56deg);
    animation: paperRoll 1.8s linear .2s 2;
}

.paper-roll-left {
    left: 22px;
}

.paper-roll-right {
    right: 22px;
}

.print-reveal {
    position: relative;
    width: max-content;
    max-width: 100%;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: printReveal .85s cubic-bezier(.65,0,.25,1) forwards, cmykRegister .72s ease-out forwards;
}

.print-reveal::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -18px;
    width: 12px;
    background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--yellow));
    box-shadow: 0 0 0 1px var(--line);
    animation: revealHead .85s cubic-bezier(.65,0,.25,1) forwards;
}

.ink-ready .product-card,
.ink-ready .portfolio-card,
.ink-ready .blog-card,
.ink-ready .quote-form,
.ink-ready .contact-card,
.ink-ready .calc-panel,
.ink-ready .map-card {
    animation: paperFeed .55s ease-out both;
}

.product-card::after,
.portfolio-card::after,
.blog-card::after,
.contact-card::after,
.quote-form::after,
.calc-panel::after,
.map-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 16%, rgba(0,129,138,.16) 0 2px, transparent 3px),
        radial-gradient(circle at 88% 28%, rgba(201,0,212,.14) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 84%, rgba(255,221,56,.2) 0 2px, transparent 3px);
    opacity: 0;
    animation: inkSettles .8s ease-out .45s forwards;
}

.section,
.page-hero,
.hero {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding-top: 84px;
    padding-bottom: 84px;
}

.section-tight {
    padding-top: 38px;
}

.hero {
    padding-top: 68px;
    padding-bottom: 70px;
}

.hero-panel {
    min-height: 520px;
    display: grid;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.hero-card {
    width: 100%;
    max-width: 980px;
    padding: 0;
    border: 0;
    background: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--line-soft);
    background: #eee;
    color: var(--magenta);
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    font-family: Sora, Inter, sans-serif;
    line-height: 1.02;
    margin: 0;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(46px, 8vw, 86px);
    font-weight: 800;
}

h2 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
}

h3 {
    font-size: 25px;
    font-weight: 800;
}

.hero-card .lead,
.page-lead {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 19px;
}

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

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    border-bottom: 4px solid var(--line);
    padding-bottom: 18px;
}

.section-heading p {
    max-width: 580px;
    margin: 12px 0 0;
    color: var(--muted);
}

.accent {
    color: var(--magenta);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.glass-card,
.product-card,
.portfolio-card,
.contact-card,
.quote-form,
.calc-panel {
    border: 1px solid var(--line);
    background: var(--surface);
}

.product-card,
.portfolio-card,
.blog-card {
    position: relative;
    min-height: 100%;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover,
.portfolio-card:hover,
.blog-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--line);
}

.card-media,
.feature-media,
.blog-media {
    background: #e9e9e9;
    overflow: hidden;
}

.card-media {
    aspect-ratio: 4 / 3;
    border-bottom: 1px solid var(--line);
}

.card-media img,
.feature-media img,
.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.card-body p,
.blog-card p,
.content-page article {
    color: var(--muted);
}

.card-body p {
    margin: 10px 0 0;
}

.card-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
    font-weight: 800;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
}

.chip {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 0 14px;
    color: var(--text);
    background: var(--surface);
}

.chip.active,
.chip:hover {
    background: var(--text);
    color: #fff;
}

.product-card .chip {
    margin-bottom: 12px;
    border-color: var(--cyan);
    color: var(--cyan);
}

.product-card[data-accent="magenta"] .chip {
    border-color: var(--magenta);
    color: var(--magenta);
}

.product-card[data-accent="yellow"] .chip {
    border-color: #a17800;
    color: #a17800;
}

.cta-band {
    padding: 54px 34px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 8px 8px 0 var(--line);
}

.cta-band p {
    margin: 14px 0 26px;
    max-width: 620px;
    color: var(--muted);
}

.page-hero {
    padding-top: 72px;
    padding-bottom: 34px;
}

.page-hero h1 {
    max-width: 920px;
}

.page-hero .shadow-title,
.shadow-title {
    display: block;
    color: rgba(17, 19, 20, 0.22);
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 42px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 62px;
}

.feature-media {
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
}

.article-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card .blog-media {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
}

.blog-card h3 {
    margin-top: 14px;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 54px 24px 96px;
}

.content-page article {
    font-size: 18px;
}

.content-page article a {
    color: var(--magenta);
    text-decoration: underline;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field span {
    color: var(--muted);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    padding: 12px 14px;
    outline: none;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--magenta);
    box-shadow: inset 0 -3px 0 var(--magenta);
}

.file-drop {
    grid-column: 1 / -1;
    min-height: 158px;
    display: grid;
    place-items: center;
    border: 1px dashed var(--line);
    padding: 24px;
    text-align: center;
    background: #fafafa;
}

.file-drop small,
.hint {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.quote-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.quote-form,
.contact-card,
.calc-panel {
    position: relative;
    padding: 32px;
}

.contact-stack {
    display: grid;
    gap: 22px;
}

.contact-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-row span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--magenta);
    flex: 0 0 auto;
}

.map-card {
    position: relative;
    border: 1px solid var(--line);
    min-height: 390px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--line);
}

.map-panel-head,
.map-panel-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
}

.map-panel-head {
    border-bottom: 1px solid var(--line);
}

.map-panel-head strong {
    display: block;
    font-family: Sora, Inter, sans-serif;
    font-size: 18px;
    line-height: 1.15;
}

.map-coord {
    border: 1px solid var(--line);
    padding: 7px 10px;
    background: #f6f6f6;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.map-viewport {
    position: relative;
    height: 300px;
    background:
        linear-gradient(135deg, rgba(0,129,138,.08), transparent 44%),
        #e9e9e9;
    overflow: hidden;
}

.map-viewport iframe {
    position: absolute;
    inset: -28px -18px -34px -18px;
    width: calc(100% + 36px);
    height: calc(100% + 62px);
    border: 0;
    filter: grayscale(1) contrast(1.22) brightness(1.04);
}

.map-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17,17,17,.11) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,17,17,.09) 1px, transparent 1px),
        linear-gradient(135deg, rgba(201,0,212,.12), transparent 42%, rgba(0,129,138,.12));
    background-size: 48px 48px, 48px 48px, 100% 100%;
    mix-blend-mode: multiply;
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -66%);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 4px 4px 0 var(--line);
}

.map-pin::before,
.map-pin::after {
    content: "";
    position: absolute;
    background: var(--line);
}

.map-pin::before {
    width: 1px;
    height: 72px;
}

.map-pin::after {
    width: 100%;
    height: 1px;
}

.map-pin span {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    border: 4px solid var(--magenta);
    background: var(--cyan);
    transform: rotate(45deg);
}

.map-panel-foot {
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
}

.map-panel-foot a {
    color: var(--text);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
}

.process-step strong:first-child {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--magenta);
}

.calculator-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 42px 24px 96px;
}

.calculator-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.calculator-intro h1 {
    font-size: clamp(36px, 5vw, 52px);
}

.calculator-intro .shadow-title {
    display: inline;
}

.calculator-intro p {
    color: var(--muted);
    margin: 14px 0 0;
}

.calc-grid {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.calc-panel {
    display: grid;
    gap: 18px;
}

.calc-panel .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.material-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.material-options label {
    cursor: pointer;
}

.material-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.material-options span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 0 12px;
    background: #fff;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.material-options input:checked + span {
    background: var(--line);
    color: #fff;
}

.qty-control {
    display: inline-grid;
    grid-template-columns: 42px 58px 42px;
    border: 1px solid var(--line);
    width: max-content;
}

.qty-control button,
.qty-control input {
    min-height: 42px;
    border: 0;
    border-right: 1px solid var(--line);
    background: #fff;
    text-align: center;
}

.qty-control button:last-child {
    border-right: 0;
}

.calc-total {
    border-top: 1px solid var(--line-soft);
    padding-top: 18px;
}

.calc-total span {
    display: block;
    color: var(--muted);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.calc-number {
    display: block;
    margin-top: 6px;
    font-family: Sora, Inter, sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.calc-preview {
    position: relative;
    min-height: 470px;
    border: 1px solid var(--line);
    background: #111;
    overflow: hidden;
}

.calc-preview-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(1) contrast(1.06);
    opacity: 0.72;
}

.calc-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.48));
}

.mock-sheet {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 54%;
    height: 34%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 40px rgba(255,255,255,.12) inset;
}

.mock-sheet::before {
    content: "JET";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,.25);
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 28px;
}

.dim-line {
    position: absolute;
    z-index: 3;
    color: #fff;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 1px 8px #000;
}

.dim-line.width {
    left: 22%;
    right: 22%;
    top: 28%;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,.48);
}

.dim-line.height {
    right: 16%;
    top: 36%;
    writing-mode: vertical-rl;
    border-right: 1px solid rgba(255,255,255,.48);
    padding-right: 6px;
}

.preview-bar {
    position: absolute;
    z-index: 3;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px;
    background: rgba(0,0,0,.72);
    color: #fff;
}

.flash {
    max-width: var(--max);
    margin: 20px auto 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.flash-success {
    border-color: var(--green);
}

.flash-error {
    border-color: var(--error);
    color: var(--error);
}

.media-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #ececec;
}

.media-fallback span {
    color: rgba(17, 19, 20, 0.25);
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 34px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 40px;
    padding: 54px 64px;
    border-top: 1px solid var(--line);
    background: #efefef;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
}

.site-footer nav,
.footer-contact {
    display: grid;
    gap: 10px;
}

.site-footer a:hover {
    color: var(--magenta);
}

.footer-brand {
    margin-bottom: 14px;
}

.hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1120px) {
    .site-nav {
        padding: 0 24px;
    }

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

    .quote-layout,
    .contact-layout,
    .feature-split,
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-nav {
        grid-template-columns: 1fr auto;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-links,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
        justify-content: start;
    }

    .site-nav.open .nav-links,
    .site-nav.open .nav-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-links a {
        min-height: 44px;
    }

    .hero-panel {
        min-height: 430px;
    }

    .grid-3,
    .article-list,
    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 38px;
    }

    .section,
    .page-hero,
    .hero,
    .calculator-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .grid-4,
    .grid-2,
    .form-grid,
    .calc-panel .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full,
    .file-drop {
        grid-column: auto;
    }

    .quote-form,
    .contact-card,
    .calc-panel {
        padding: 22px;
    }

    .calc-preview {
        min-height: 340px;
    }

    .site-footer {
        padding: 40px 20px;
    }
}

@keyframes printHeadSweep {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 180px));
        opacity: 0;
    }
}

@keyframes scanLayerOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes paperRoll {
    to {
        transform: rotate(720deg);
    }
}

@keyframes printReveal {
    0% {
        opacity: 1;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes revealHead {
    0% {
        left: -18px;
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 8px);
        opacity: 0;
    }
}

@keyframes cmykRegister {
    0% {
        text-shadow: -2px 0 var(--cyan), 2px 0 var(--magenta), 0 2px var(--yellow);
    }
    70% {
        text-shadow: -1px 0 rgba(0,129,138,.45), 1px 0 rgba(201,0,212,.45), 0 1px rgba(255,221,56,.45);
    }
    100% {
        text-shadow: none;
    }
}

@keyframes paperFeed {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes inkSettles {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
