/* ==========================================================================
   MasqueradeProtocol.com — Encrypted Dossier
   Dark-mode Venetian ballroom meets decommissioned server farm.
   Compliance tokens from DESIGN.md: `01::ORIGIN` (Google IntersectionObserver (not listeners but
   ========================================================================== */

:root {
    --bg-primary: #0d0509;
    --bg-secondary: #1a0a10;
    --surface: #2a1520;
    --text-primary: #e8ddd0;
    --text-secondary: #a8998c;
    --accent-gold: #8a6e4e;
    --accent-crimson: #8b2942;
    --highlight: #c4763a;
    --grain-opacity: 0.05;
    --sidebar-width: 72px;
    --sidebar-expanded: 280px;
    --morph-duration: 400ms;
    --morph-easing: cubic-bezier(0.33, 1, 0.68, 1);
    --content-max: 960px;
    --content-pad: clamp(2rem, 5vw, 6rem);
    --scroll-progress: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-primary);
}

body {
    font-family: "Commissioner", "Inter", system-ui, sans-serif;
    font-weight: 350;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    letter-spacing: 0.005em;
    position: relative;
}

/* =========================================================================
   Grain overlay (persistent fixed SVG noise)
   ========================================================================= */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
}
.grain-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================================================
   Mask silhouettes — decorative CSS-only background ellipses
   ========================================================================= */
.mask-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mask-silhouette {
    position: absolute;
    border-radius: 50%;
    opacity: 0.28;
    filter: blur(40px);
    transform: translateY(calc(var(--scroll-progress) * -40px));
    will-change: transform;
}

.mask-silhouette--one {
    width: 70vw;
    height: 70vw;
    top: -20vw;
    right: -25vw;
    background: radial-gradient(circle at 45% 45%,
        var(--surface) 0%,
        rgba(42, 21, 32, 0.6) 40%,
        transparent 70%);
}

.mask-silhouette--two {
    width: 60vw;
    height: 60vw;
    top: 80vh;
    left: -15vw;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(139, 41, 66, 0.25) 0%,
        rgba(42, 21, 32, 0.35) 45%,
        transparent 75%);
}

.mask-silhouette--three {
    width: 55vw;
    height: 55vw;
    top: 220vh;
    right: -10vw;
    background: radial-gradient(circle at 40% 50%,
        rgba(138, 110, 78, 0.18) 0%,
        rgba(42, 21, 32, 0.3) 50%,
        transparent 75%);
}

/* =========================================================================
   Circuit pattern (PCB traces)
   ========================================================================= */
.circuit-pattern {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    color: var(--surface);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    transition: color 600ms ease, opacity 600ms ease;
    filter: drop-shadow(0 0 0 rgba(138, 110, 78, 0));
}

body.circuit-illuminated .circuit-pattern {
    color: var(--accent-gold);
    opacity: 0.55;
    filter: drop-shadow(0 0 3px rgba(138, 110, 78, 0.35));
}

.circuit-pattern .circuit-trace path {
    stroke-dasharray: 3000;
    stroke-dashoffset: calc(3000 - (var(--scroll-progress) * 3000));
    transition: stroke-dashoffset 80ms linear;
}

/* =========================================================================
   Sidebar
   ========================================================================= */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    z-index: 100;
    transition: width var(--morph-duration) var(--morph-easing);
    overflow: hidden;
    isolation: isolate;
}

.sidebar::before {
    /* Subliminal grain on sidebar */
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0 2px,
            rgba(138, 110, 78, 0.025) 2px 3px
        ),
        radial-gradient(ellipse at 30% 20%, rgba(139, 41, 66, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.sidebar::after {
    /* Subtle circuit lines embedded in sidebar */
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 30%, rgba(42, 21, 32, 0.9) 30%, rgba(42, 21, 32, 0.9) 31%, transparent 31%),
        linear-gradient(90deg, transparent 62%, rgba(42, 21, 32, 0.8) 62%, rgba(42, 21, 32, 0.8) 63%, transparent 63%);
    background-size: 100% 60px, 100% 90px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.sidebar:hover,
.sidebar:focus-within {
    width: var(--sidebar-expanded);
}

.sidebar__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 16px 24px;
}

.sidebar__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--accent-gold);
    margin-bottom: 56px;
    min-height: 40px;
}

.sidebar__logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--accent-gold);
    transition: color var(--morph-duration) var(--morph-easing),
                transform 800ms var(--morph-easing);
}

.sidebar:hover .sidebar__logo,
.sidebar:focus-within .sidebar__logo {
    color: var(--highlight);
    transform: rotate(6deg);
}

.sidebar__brand-text {
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    line-height: 1.35;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 300ms ease 120ms, transform 400ms var(--morph-easing) 120ms;
    white-space: nowrap;
}

.sidebar:hover .sidebar__brand-text,
.sidebar:focus-within .sidebar__brand-text {
    opacity: 1;
    transform: translateX(0);
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 10px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 2px;
    position: relative;
    transition: background 300ms ease, color 300ms ease;
    font-variation-settings: "wght" 350;
    font-weight: 350;
}

.nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--accent-crimson);
    transition: height 300ms var(--morph-easing);
}

.nav-item:hover,
.nav-item.is-active {
    color: var(--text-primary);
    background: rgba(42, 21, 32, 0.45);
    font-variation-settings: "wght" 700;
}

.nav-item:hover::before,
.nav-item.is-active::before {
    height: 60%;
}

.nav-item__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: color 300ms ease, transform 400ms var(--morph-easing);
}

.nav-item:hover .nav-item__glyph,
.nav-item.is-active .nav-item__glyph {
    color: var(--highlight);
    transform: rotate(45deg) scale(1.08);
}

.nav-item__label {
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 300ms ease 120ms, transform 400ms var(--morph-easing) 120ms;
    white-space: nowrap;
}

.sidebar:hover .nav-item__label,
.sidebar:focus-within .nav-item__label {
    opacity: 1;
    transform: translateX(0);
}

.sidebar__footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-secondary);
}

.sidebar__status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--highlight);
    box-shadow: 0 0 8px rgba(196, 118, 58, 0.8);
    animation: pulseDot 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

.status-text {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 300ms ease 150ms, transform 400ms var(--morph-easing) 150ms;
    white-space: nowrap;
}

.sidebar:hover .status-text,
.sidebar:focus-within .status-text {
    opacity: 1;
    transform: translateX(0);
}

.sidebar__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 300ms ease 180ms, transform 400ms var(--morph-easing) 180ms;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 20px;
}

.sidebar:hover .sidebar__meta,
.sidebar:focus-within .sidebar__meta {
    opacity: 0.75;
    transform: translateX(0);
}

.meta-line {
    display: block;
}

.sidebar__separator {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0.7;
    animation: pulseSeparator 4s ease-in-out infinite;
    z-index: 3;
}

/* =========================================================================
   Main content
   ========================================================================= */
.main {
    position: relative;
    z-index: 5;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Each "Act" */
.act {
    position: relative;
    min-height: 100vh;
    padding: clamp(6rem, 14vh, 12rem) var(--content-pad);
    display: flex;
    align-items: center;
    justify-content: center;
}

.act__content {
    position: relative;
    z-index: 3;
    max-width: var(--content-max);
    width: 100%;
}

.act__content--center {
    text-align: center;
}

.act__marker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.act__marker--muted {
    color: var(--text-secondary);
    justify-content: center;
}

.marker-line {
    flex: 1;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.4;
}

.act__marker--muted .marker-line {
    max-width: 120px;
    background: var(--text-secondary);
    opacity: 0.3;
}

.marker-text {
    white-space: nowrap;
}

/* =========================================================================
   ACT I — Hero with masked figure
   ========================================================================= */
.act--i {
    min-height: 100vh;
    overflow: hidden;
}

.act--i .act__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.masked-figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(420px, 60vh, 780px);
    height: clamp(420px, 60vh, 780px);
    opacity: 0.55;
}

.masked-figure__head {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 52%;
    height: 70%;
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    background: radial-gradient(ellipse at 50% 35%,
        #3a1d28 0%,
        #2a1520 35%,
        #1a0a10 70%,
        transparent 90%);
    filter: blur(2px);
}

.masked-figure__mask {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 24%;
    background:
        radial-gradient(ellipse at 28% 50%, #2a1520 0%, transparent 55%),
        radial-gradient(ellipse at 72% 50%, #2a1520 0%, transparent 55%),
        linear-gradient(180deg, rgba(138, 110, 78, 0.5), rgba(42, 21, 32, 0.95));
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    box-shadow:
        inset 0 -2px 0 rgba(138, 110, 78, 0.45),
        inset 0 2px 0 rgba(196, 118, 58, 0.25);
}

.masked-figure__eye {
    position: absolute;
    top: 40%;
    width: 9%;
    height: 8%;
    background: radial-gradient(ellipse at 50% 50%, #0d0509 0%, #0d0509 60%, transparent 100%);
    border-radius: 50% 50% 40% 40%;
}

.masked-figure__eye--left { left: 28%; }
.masked-figure__eye--right { right: 28%; }

.masked-figure__shoulders {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 30%;
    background: radial-gradient(ellipse at 50% 0%,
        #2a1520 0%,
        #1a0a10 50%,
        transparent 85%);
    filter: blur(4px);
}

.hero-title {
    font-family: "Commissioner", "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 7.5vw, 6.4rem);
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: var(--text-primary);
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.hero-title__line {
    display: block;
    font-variation-settings: "wght" 100;
    animation: morphWeight 2.5s var(--morph-easing) 0.5s forwards;
}

.hero-title__line--alt {
    color: var(--accent-gold);
    font-style: italic;
    animation-delay: 1.1s;
    letter-spacing: -0.015em;
}

.hero-subtitle {
    font-family: "Commissioner", "Inter", sans-serif;
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 56px;
}

.hero-metadata {
    display: grid;
    gap: 12px;
    max-width: 620px;
    padding: 20px 24px;
    background: rgba(26, 10, 16, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 2px solid var(--accent-gold);
    border-radius: 2px;
}

.metadata-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metadata-label {
    color: var(--accent-gold);
    min-width: 130px;
    opacity: 0.9;
}

.metadata-value {
    color: var(--text-primary);
    opacity: 0.85;
}

/* =========================================================================
   ACT II — Panels (frosted glass)
   ========================================================================= */
.act--ii {
    padding-top: clamp(8rem, 18vh, 14rem);
    padding-bottom: clamp(8rem, 18vh, 14rem);
}

.act__title {
    font-family: "Commissioner", "Inter", sans-serif;
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 28px;
    max-width: 820px;
}

.act__lede {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 64px;
}

.panels {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.panel {
    position: relative;
    padding: 32px 36px;
    background: rgba(26, 10, 16, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 2px;
    border: 1px solid rgba(138, 110, 78, 0.12);
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 900ms var(--morph-easing),
                transform 900ms var(--morph-easing),
                background 400ms ease,
                border-color 400ms ease;
}

.panel.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.panel:hover {
    background: rgba(42, 21, 32, 0.7);
    border-color: rgba(138, 110, 78, 0.35);
}

.panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.panel__index {
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.panel__glyph {
    font-size: 1.4rem;
    color: var(--highlight);
    line-height: 1;
}

.panel__title {
    font-family: "Commissioner", "Inter", sans-serif;
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.panel__body {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.panel__footer {
    padding-top: 16px;
    border-top: 1px solid rgba(138, 110, 78, 0.15);
}

.panel__tag {
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--accent-crimson);
    text-transform: uppercase;
}

/* =========================================================================
   ACT III — Two-column with bridge line
   ========================================================================= */
.act--iii {
    padding-top: clamp(8rem, 18vh, 14rem);
    padding-bottom: clamp(8rem, 18vh, 14rem);
    position: relative;
}

.act--iii .act__bridge {
    position: absolute;
    top: 0;
    left: calc(var(--sidebar-width) * -1 - var(--content-pad));
    width: calc(100vw);
    height: 1px;
    background: linear-gradient(90deg,
        var(--accent-gold) 0%,
        var(--accent-gold) 50%,
        transparent 100%);
    opacity: 0.45;
}

.twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.twocol__col p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.04rem;
    line-height: 1.8;
}

.twocol__col p em {
    color: var(--highlight);
    font-style: italic;
    font-variation-settings: "wght" 450;
}

.dropcap {
    position: relative;
}

.dropcap__letter {
    float: left;
    font-family: "Commissioner", "Inter", sans-serif;
    font-weight: 700;
    font-variation-settings: "wght" 800;
    font-size: 5.2rem;
    line-height: 0.85;
    color: var(--accent-gold);
    padding: 6px 14px 0 0;
    margin-top: 4px;
    letter-spacing: -0.04em;
}

.specs {
    list-style: none;
    margin-top: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(138, 110, 78, 0.2);
    border-bottom: 1px solid rgba(138, 110, 78, 0.2);
}

.specs li {
    display: flex;
    gap: 20px;
    padding: 8px 0;
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    border-bottom: 1px dashed rgba(138, 110, 78, 0.1);
}

.specs li:last-child {
    border-bottom: none;
}

.specs__key {
    color: var(--accent-gold);
    min-width: 72px;
    text-transform: uppercase;
}

.specs__val {
    color: var(--text-secondary);
    flex: 1;
}

/* =========================================================================
   ACT IV / Finale
   ========================================================================= */
.act--iv {
    padding-top: clamp(10rem, 22vh, 16rem);
    padding-bottom: clamp(10rem, 22vh, 16rem);
    background: radial-gradient(ellipse at 50% 50%,
        var(--bg-secondary) 0%,
        var(--bg-primary) 40%,
        #050204 80%,
        #030102 100%);
    position: relative;
}

.act--iv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.finale-lede {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 72px;
    opacity: 0.75;
}

.finale-phrase {
    font-family: "Commissioner", "Inter", sans-serif;
    font-size: clamp(1.8rem, 4.4vw, 3.4rem);
    font-variation-settings: "wght" 100;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 auto 72px;
    max-width: 820px;
    min-height: 4.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: font-variation-settings 1.8s var(--morph-easing),
                opacity 800ms ease;
}

.finale-phrase__text {
    display: block;
    opacity: 0.95;
}

.finale-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.finale-footer__line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.finale-footer__text {
    white-space: nowrap;
}

.finale-meta {
    font-family: "Fira Code", ui-monospace, monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.55;
}

/* =========================================================================
   Morph-on-view: trigger weight animation when in viewport
   ========================================================================= */
.morph-on-view {
    font-variation-settings: "wght" 100;
    opacity: 0.7;
    transition: font-variation-settings 2s var(--morph-easing),
                opacity 1.2s ease;
}

.morph-on-view.is-visible {
    font-variation-settings: "wght" 700;
    opacity: 1;
}

/* =========================================================================
   Keyframes
   ========================================================================= */
@keyframes morphWeight {
    0% {
        font-variation-settings: "wght" 100;
        letter-spacing: 0.08em;
        opacity: 0.25;
    }
    50% {
        opacity: 0.85;
    }
    100% {
        font-variation-settings: "wght" 700;
        letter-spacing: -0.02em;
        opacity: 1;
    }
}

@keyframes pulseSeparator {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(196, 118, 58, 0.6);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 0 14px rgba(196, 118, 58, 0.95);
    }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 860px) {
    .twocol {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-metadata {
        padding: 16px 18px;
    }
    .metadata-row {
        flex-direction: column;
        gap: 2px;
    }
    .metadata-label {
        min-width: 0;
    }
    .sidebar {
        width: 56px;
    }
    :root {
        --sidebar-width: 56px;
    }
    .sidebar__meta {
        display: none;
    }
}

@media (max-width: 560px) {
    .act {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .panel {
        padding: 24px 22px;
    }
    .dropcap__letter {
        font-size: 3.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title__line,
    .morph-on-view,
    .panel,
    .status-dot,
    .sidebar__separator {
        animation: none !important;
        transition: none !important;
    }
    .panel {
        opacity: 1;
        transform: none;
    }
}
