:root {
  --ink: #202320;
  --muted: #73776f;
  --paper: #fbfaf6;
  --bg: #eae9e3;
  --line: #e6e4dc;
  --green: #b9ef78;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#77796d 0.55px, transparent 0.55px);
  background-size: 20px 20px;
  opacity: 0.11;
}
.document {
  position: relative;
  z-index: 1;
  width: min(760px, 42vw);
  margin: 48px auto 100px;
  padding: 54px 64px 60px;
  background: var(--paper);
  border: 1px solid rgba(32, 35, 32, 0.07);
  box-shadow:
    0 26px 80px rgba(35, 37, 31, 0.12),
    0 2px 8px rgba(35, 37, 31, 0.06);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.5s;
}
.document:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--green);
}
.document.showcase-active {
  transform: translateX(clamp(-300px, -17vw, -180px));
}
.doc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 11px var(--mono);
  letter-spacing: 0.1em;
  color: #7b8076;
  text-transform: uppercase;
}
.availability {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #83b352;
  box-shadow: 0 0 0 3px #edf5e5;
}
.intro {
  padding: 54px 0 58px;
}
.name {
  margin: 0 0 8px;
  font: 800 62px/0.98 var(--display);
  letter-spacing: -0.06em;
}
.role {
  font: 500 19px var(--body);
  color: #686e64;
}
.summary {
  font-size: 16px;
  line-height: 1.7;
  color: #646960;
  margin: 24px 0 25px;
  max-width: 550px;
}
.sheet-actions {
  display: flex;
  gap: 10px;
}
.pill {
  font-size: 12px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid #d9d9d0;
  border-radius: 99px;
  padding: 10px 15px;
}
.pill.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.rule {
  height: 1px;
  background: var(--line);
  margin: 0 0 32px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 11px var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #777b72;
  margin-bottom: 20px;
}
.section-head .aside {
  color: #9a9d94;
}
.resume-section {
  padding: 0 0 35px;
}
.experience {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 16px;
  padding: 0 0 18px;
}
.experience strong {
  font: 600 15px var(--body);
}
.experience time {
  font: 11px var(--mono);
  color: #858980;
}
.experience span {
  font-size: 13px;
  color: #767a71;
  grid-column: 1;
}
.skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.skill {
  padding: 7px 10px;
  border-radius: 4px;
  background: #f0efe9;
  font: 12px var(--mono);
  color: #5d6258;
}
.work-section {
  padding-top: 4px;
}
.work-lead {
  font-size: 14px;
  color: #71766d;
  line-height: 1.6;
  margin: -7px 0 12px;
}
.project-media {
  display: none;
}
.project-entry {
  position: relative;
  padding: 40px 0 46px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.project-entry:first-of-type {
  margin-top: 18px;
}
.project-entry:before {
  content: "";
  position: absolute;
  left: -18px;
  top: 40px;
  bottom: 46px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), rgba(185, 239, 120, 0.16));
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.project-entry.is-active:before {
  opacity: 1;
  transform: scaleY(1);
}
.project-kicker {
  transition: color 0.3s;
}
.project-entry.is-active .project-kicker {
  color: #668b3d;
}
.project-title {
  position: relative;
  width: fit-content;
}
.project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 34px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.project-entry.is-active .project-title:after {
  transform: scaleX(1);
}
.project-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font: 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #757a71;
}
.project-title {
  font: 800 42px/1.05 var(--display);
  letter-spacing: -0.055em;
  margin: 15px 0 9px;
}
.project-type {
  font: 12px var(--mono);
  letter-spacing: 0.04em;
  color: #70766c;
}
.project-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #646960;
  margin: 18px 0 22px;
  max-width: 520px;
}
.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid #d6d6cc;
  border-bottom: 1px solid #d6d6cc;
}
.meta-label {
  font: 10px var(--mono);
  color: #73796f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meta-value {
  font-size: 13px;
  margin-top: 5px;
}
.project-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #686d64;
}
.detail-label {
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #73796f;
  padding-top: 3px;
}
.project-tools {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}
.project-tools span {
  background: #f0efe9;
  border-radius: 4px;
  padding: 6px 9px;
  font: 11px var(--mono);
  color: #5d6258;
}
.project-links {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  font-size: 12px;
}
.project-links a {
  color: #31352f;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.media-dock {
  position: fixed;
  z-index: 3;
  right: clamp(200px, 18vw, 350px);
  top: 50%;
  width: clamp(300px, 26vw, 430px);
  height: min(80vh, 820px);
  display: grid;
  place-items: center;
  transform: translateY(-50%) translateX(30px);
  opacity: 0;
  transition:
    opacity 0.6s,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.showcase-active ~ .media-dock,
.media-dock.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.device-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
}
.media-caption {
  position: absolute;
  left: 50%;
  bottom: -36px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transform: translate(-50%, 5px);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  color: #383d35;
  font: 11px var(--mono);
  letter-spacing: 0.02em;
}
.media-dock.active .media-caption {
  opacity: 1;
  transform: translate(-50%, 0);
}
.media-caption-index {
  color: #536d39;
  font-weight: 500;
}
.media-caption-title {
  color: #383d35;
  font-weight: 500;
}
.phone-key {
  position: absolute;
  z-index: 2;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #666970, #292b30);
  box-shadow: 0 0 0 0.5px #878990;
}
.phone-key--volume-up {
  left: -2px;
  top: 31%;
  height: 34px;
}
.phone-key--volume-down {
  left: -2px;
  top: 38%;
  height: 34px;
}
.phone-key--action {
  left: -2px;
  top: 23%;
  height: 22px;
}
.phone-key--power {
  right: -2px;
  top: 34%;
  height: 62px;
}
.wide .phone-key {
  display: none;
}
.device {
  position: relative;
  width: min(100%, clamp(280px, 19vw, 360px));
  height: auto;
  aspect-ratio: 71.5/146.7;
  max-height: 80vh;
  border-radius: clamp(42px, 2.5vw, 50px);
  padding: 8px;
  background: linear-gradient(
    135deg,
    #565960 0%,
    #222429 8%,
    #111215 24%,
    #090a0c 78%,
    #383a40 100%
  );
  box-shadow:
    0 34px 90px rgba(18, 21, 23, 0.32),
    inset 0 0 0 1px #777a80,
    inset 0 0 0 2px #24262a;
  overflow: visible;
}
.screen {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: clamp(32px, 2vw, 40px);
  background: #253a31;
  position: relative;
}
.screen-notch {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: 4%;
  border-radius: 0 0 16px 16px;
  background: #08090b;
  box-shadow: 0 1px 1px #ffffff12;
}
.landscape .screen-notch {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4%;
  height: 31%;
  border-radius: 0 16px 16px 0;
}
.screen-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #8dba87 0%,
    #c1cc87 38%,
    #536e4c 39%,
    #223b35 100%
  );
  transition: background 0.4s;
}
.screen-art:before {
  content: "";
  position: absolute;
  width: 140%;
  height: 55%;
  left: -20%;
  bottom: -14%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(140deg, #243c34, #4e7050 60%, #182a28);
  transform: rotate(-9deg);
}
.screen-art:after {
  content: "";
  position: absolute;
  width: 45%;
  height: 34%;
  left: 28%;
  bottom: 18%;
  background: linear-gradient(
    90deg,
    #d8a365 0 20%,
    #344a3e 20% 75%,
    #d8a365 75%
  );
  clip-path: polygon(
    50% 0,
    100% 35%,
    84% 35%,
    84% 100%,
    16% 100%,
    16% 35%,
    0 35%
  );
  filter: drop-shadow(0 8px 10px #14221e);
}
.scene-ring {
  position: absolute;
  z-index: -1;
  width: clamp(380px, 38vw, 620px);
  height: clamp(380px, 38vw, 620px);
  border: 1px solid #bdc0b3;
  border-radius: 50%;
  opacity: 0.22;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
}
.media-dock.landscape {
  width: min(41vw, 800px);
  right: 1vw;
}
.landscape .device {
  width: 100%;
  height: auto;
  aspect-ratio: 146.7/71.5;
  max-height: 80vh;
  border-radius: clamp(34px, 2.4vw, 44px);
  padding: 8px;
}
.landscape .screen {
  border-radius: clamp(25px, 1.7vw, 36px);
}
.landscape .phone-key--action {
  left: 22%;
  top: -2px;
  width: 22px;
  height: 3px;
}
.landscape .phone-key--volume-up {
  left: 31%;
  top: -2px;
  width: 34px;
  height: 3px;
}
.landscape .phone-key--volume-down {
  left: 38%;
  top: -2px;
  width: 34px;
  height: 3px;
}
.landscape .phone-key--power {
  right: -2px;
  top: 30%;
  width: 3px;
  height: 62px;
}
.landscape .screen-art {
  background: linear-gradient(
    180deg,
    #7897ae 0%,
    #c6b68a 50%,
    #9d8d65 51%,
    #40554a 100%
  );
}
.landscape .screen-art:before {
  height: 36%;
  bottom: -8%;
  background: linear-gradient(160deg, #4d6655, #1d302c);
}
.landscape .screen-art:after {
  width: 20%;
  height: 37%;
  left: 40%;
  bottom: 20%;
}
.media-dock.wide {
  width: min(41vw, 800px);
  right: 1vw;
}
.wide .device {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-height: 80vh;
  border-radius: 22px;
  padding: 10px;
}
.wide .wide .screen {
  border-radius: 14px;
}
.wide .screen-art {
  background: linear-gradient(
    180deg,
    #c8b8a7,
    #e4d6bd 47%,
    #93946c 48%,
    #354b43
  );
}
.wide .screen-art:before {
  height: 40%;
  bottom: -12%;
  background: linear-gradient(140deg, #344a3e, #768755);
}
.wide .screen-art:after {
  width: 14%;
  height: 45%;
  left: 44%;
  bottom: 14%;
}
.eyebrow {
  font: 10px var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7f8379;
}
@media (max-width: 1100px) {
  .document {
    width: min(720px, 62vw);
    padding: 46px 44px 52px;
  }
  .document.showcase-active {
    transform: translateX(-18vw);
  }
  .media-dock {
    right: clamp(35px, 8vw, 85px);
    width: clamp(250px, 31vw, 340px);
  }
  .media-dock.landscape,
  .media-dock.wide {
    right: 2vw;
    width: 33vw;
  }
  .device {
    width: min(100%, clamp(250px, 26vw, 340px));
    height: min(66vh, 620px);
  }
  .landscape .device {
    width: 100%;
    height: auto;
    aspect-ratio: 146.7/71.5;
    max-height: 70vh;
  }
  .wide .device {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    max-height: 70vh;
  }
}
@media (max-width: 760px) {
  html,
  body {
    overflow-x: clip;
  }
  .document {
    width: calc(100% - 28px);
    margin: 22px 14px 50px;
    padding: 34px 26px 42px;
    transform: none !important;
  }
  .name {
    font-size: 46px;
  }
  .intro {
    padding: 40px 0;
  }
  .summary {
    font-size: 15px;
  }
  .section-head {
    font-size: 10px;
  }
  .project-title {
    font-size: 34px;
  }
  .project-entry {
    padding: 30px 0 34px;
  }
  .project-meta {
    grid-template-columns: 1fr 1fr;
  }
  .project-detail {
    grid-template-columns: 78px 1fr;
  }
  .media-dock {
    display: none;
  }
  .project-media {
    display: grid;
    place-items: center;
    margin: 22px 0 28px;
  }
  .project-visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    background: #253a31;
    box-shadow: 0 10px 28px rgba(32, 35, 32, 0.12);
  }
  .project-visual .screen-art {
    position: absolute;
    inset: 0;
  }
  .project-media.portrait .project-visual {
    width: auto;
    height: min(54svh, 440px);
    aspect-ratio: 9/16;
    max-width: 100%;
    border-radius: 20px;
  }
  .project-media.landscape .project-visual,
  .project-media.wide .project-visual {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .project-media.landscape .screen-art {
    background: linear-gradient(
      180deg,
      #7897ae 0%,
      #c6b68a 50%,
      #9d8d65 51%,
      #40554a 100%
    );
  }
  .project-media.landscape .screen-art:before {
    height: 36%;
    bottom: -8%;
    background: linear-gradient(160deg, #4d6655, #1d302c);
  }
  .project-media.landscape .screen-art:after {
    width: 20%;
    height: 37%;
    left: 40%;
    bottom: 20%;
  }
  .project-media.wide .screen-art {
    background: linear-gradient(
      180deg,
      #c8b8a7,
      #e4d6bd 47%,
      #93946c 48%,
      #354b43
    );
  }
  .project-media.wide .screen-art:before {
    height: 40%;
    bottom: -12%;
    background: linear-gradient(140deg, #344a3e, #768755);
  }
  .project-media.wide .screen-art:after {
    width: 14%;
    height: 45%;
    left: 44%;
    bottom: 14%;
  }
  .device {
    width: 118px;
    height: auto;
    max-height: none;
    padding: 7px;
    border-radius: 27px;
  }
  .screen {
    border-radius: 21px;
  }
  .landscape .device {
    width: 172px;
    height: auto;
    aspect-ratio: 146.7/71.5;
    border-radius: 20px;
    padding: 6px;
  }
  .landscape .screen {
    border-radius: 14px;
  }
  .landscape .screen-notch {
    border-radius: 0 8px 8px 0;
  }
  .wide .device {
    width: 140px;
    height: 90px;
    border-radius: 12px;
    padding: 6px;
  }
  .scene-ring {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Desktop work is shown inside a MacBook-style chassis. */
.wide .device {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  max-height: 80vh;
  border-radius: 16px;
  padding: 9px 9px 13px;
  background: linear-gradient(
    145deg,
    #85888d 0%,
    #55585e 4%,
    #292b30 11%,
    #111215 18%,
    #08090b 86%,
    #34363b 100%
  );
  box-shadow:
    0 34px 90px rgba(18, 21, 23, 0.32),
    inset 0 0 0 1px #aeb0b2,
    inset 0 0 0 2px #34363a;
}
.wide .device:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 4%;
  bottom: -2px;
  width: 92%;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(180deg, #8d9092, #d1d2cf 55%, #777a7b);
}
.wide .device:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -4%;
  bottom: -18px;
  width: 108%;
  height: 18px;
  background: linear-gradient(
    180deg,
    #dedfdb 0%,
    #c6c8c5 30%,
    #a2a5a2 72%,
    #777a79 100%
  );
  clip-path: polygon(
    1% 0,
    99% 0,
    100% 38%,
    96% 62%,
    86% 89%,
    72% 100%,
    28% 100%,
    14% 89%,
    4% 62%,
    0 38%
  );
  filter: drop-shadow(0 9px 9px rgba(18, 21, 23, 0.2));
}
.wide .screen {
  border-radius: 9px;
}
.wide .screen-notch {
  width: 12%;
  height: 3%;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 3px #0005;
}
@media (max-width: 1100px) {
  .wide .device {
    aspect-ratio: 16/10;
    max-height: 70vh;
  }
}
@media (max-width: 760px) {
  .wide .device:after {
    display: none;
  }
}

.role-context {
  margin-top: 8px;
  font: 11px var(--mono);
  letter-spacing: 0.02em;
  color: #73776f;
}
.sheet-actions {
  flex-wrap: wrap;
}
.media-dock:not(.active) {
  visibility: hidden;
  transition: none;
}
.media-dock.active {
  visibility: visible;
  transition:
    opacity 0.6s,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (max-width: 760px) {
  .doc-top {
    gap: 8px;
    flex-wrap: wrap;
  }
  .availability {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .role-context {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .project-detail span:last-child {
    overflow-wrap: anywhere;
  }
  .project-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Readability pass: stronger text hierarchy, fewer tiny labels. */
.section-head {
  font-size: 12px;
  color: #5d6259;
  letter-spacing: 0.09em;
}
.work-lead {
  font-size: 15px;
  color: #565c53;
  line-height: 1.65;
}
.project-entry {
  padding-top: 36px;
  padding-bottom: 40px;
}
.project-kicker {
  font-size: 12px;
  letter-spacing: 0.07em;
  color: #62675f;
}
.project-title {
  font-size: 44px;
  margin: 13px 0 8px;
}
.project-type {
  font-size: 12px;
  font-weight: 500;
  color: #5c6259;
}
.project-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #4f554d;
  margin: 16px 0 20px;
}
.project-meta {
  gap: 14px;
  padding: 14px 0;
}
.meta-label {
  font: 600 11px var(--body);
  letter-spacing: 0.06em;
  color: #5e645b;
}
.meta-value {
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}
.project-detail {
  display: block;
  margin-top: 20px;
}
.detail-label {
  display: block;
  font: 600 11px var(--body);
  letter-spacing: 0.09em;
  color: #668b3d;
  padding: 0;
  margin-bottom: 6px;
}
.project-detail p {
  font-size: 15px;
  line-height: 1.65;
  color: #424840;
  margin: 0;
}
.project-outcome {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
  padding-left: 11px;
  border-left: 2px solid var(--green);
  font-size: 14px;
  line-height: 1.55;
  color: #4e544b;
}
.project-outcome strong {
  flex: 0 0 auto;
  font: 600 11px var(--body);
  letter-spacing: 0.08em;
  color: #668b3d;
}
.project-tools {
  margin-top: 15px;
}
.project-tools span {
  font-size: 12px;
}
.project-links {
  font-size: 13px;
  gap: 20px;
  margin-top: 17px;
}
.media-caption {
  font-size: 12px;
}
.experience strong {
  font-size: 16px;
}
.experience time {
  font-size: 12px;
}
.experience span {
  font-size: 14px;
}
.skill {
  font-size: 12px;
}
@media (max-width: 760px) {
  .project-title {
    font-size: 36px;
  }
  .project-desc {
    font-size: 15px;
  }
  .project-entry {
    padding-top: 30px;
    padding-bottom: 34px;
  }
  .project-meta {
    gap: 12px 14px;
  }
  .project-detail p {
    font-size: 15px;
  }
  .project-outcome {
    font-size: 14px;
  }
}

/* Each project gets its own distinct illustrative preview until real captures are added. */
.media-dock.scene-little-wilds .screen-art,
.project-media.scene-little-wilds .screen-art {
  background: linear-gradient(
    180deg,
    #a8c897 0%,
    #d2dda5 48%,
    #74895d 49%,
    #385b45 100%
  );
}
.media-dock.scene-little-wilds .screen-art:before,
.project-media.scene-little-wilds .screen-art:before {
  width: 145%;
  height: 42%;
  left: -20%;
  bottom: -12%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(150deg, #355c43, #6d8b50 58%, #294b3a);
  transform: rotate(-7deg);
}
.media-dock.scene-little-wilds .screen-art:after,
.project-media.scene-little-wilds .screen-art:after {
  width: 42%;
  height: 43%;
  left: 29%;
  bottom: 17%;
  background:
    linear-gradient(90deg, transparent 0 39%, #8a6444 39% 61%, transparent 61%),
    linear-gradient(180deg, #a8bb69, #658d54);
  clip-path: polygon(
    50% 0,
    67% 22%,
    62% 22%,
    82% 39%,
    68% 39%,
    100% 58%,
    66% 58%,
    66% 100%,
    34% 100%,
    34% 58%,
    0 58%,
    32% 39%,
    18% 39%,
    38% 22%,
    33% 22%
  );
  filter: drop-shadow(0 8px 10px #20352b88);
}
.media-dock.scene-signal-noise .screen-art,
.project-media.scene-signal-noise .screen-art {
  background:
    radial-gradient(
      ellipse at 50% 58%,
      transparent 0 11%,
      #f4dfa64d 11.2% 11.8%,
      transparent 12% 23%,
      #f4dfa638 23.2% 23.8%,
      transparent 24% 36%,
      #f4dfa62b 36.2% 36.8%,
      transparent 37%
    ),
    linear-gradient(180deg, #526d86 0%, #b5aa88 53%, #777f68 54%, #263e42 100%);
}
.media-dock.scene-signal-noise .screen-art:before,
.project-media.scene-signal-noise .screen-art:before {
  width: 140%;
  height: 34%;
  left: -20%;
  bottom: -8%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(160deg, #405c59, #263d43 72%);
  transform: rotate(-4deg);
}
.media-dock.scene-signal-noise .screen-art:after,
.project-media.scene-signal-noise .screen-art:after {
  width: 19%;
  height: 43%;
  left: 40.5%;
  bottom: 15%;
  background: linear-gradient(
    90deg,
    #d8aa72 0 18%,
    #334c4a 18% 82%,
    #d8aa72 82%
  );
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 5px 9px #172b3180);
}
.media-dock.scene-soft-forms .screen-art,
.project-media.scene-soft-forms .screen-art {
  background:
    radial-gradient(circle at 22% 33%, #a4bc75 0 11%, transparent 11.5%),
    radial-gradient(circle at 72% 28%, #7fa2a0 0 16%, transparent 16.5%),
    radial-gradient(ellipse at 55% 77%, #d58d6c 0 18%, transparent 18.5%),
    linear-gradient(140deg, #eee2d1 0%, #d4c4ae 54%, #b6ac8f 100%);
}
.media-dock.scene-soft-forms .screen-art:before,
.project-media.scene-soft-forms .screen-art:before {
  width: 28%;
  height: 30%;
  left: 13%;
  bottom: 14%;
  border-radius: 61% 39% 67% 33% / 50% 51% 49% 50%;
  background: linear-gradient(145deg, #9db36c, #6d8961);
  transform: rotate(-20deg);
}
.media-dock.scene-soft-forms .screen-art:after,
.project-media.scene-soft-forms .screen-art:after {
  width: 30%;
  height: 33%;
  left: 57%;
  bottom: 18%;
  border-radius: 38% 62% 44% 56% / 56% 38% 62% 44%;
  background: linear-gradient(145deg, #82a7a4, #527c7d);
  clip-path: none;
  filter: drop-shadow(0 8px 10px #6e594345);
}
.landscape .phone-key--action {
  left: 23%;
  top: auto;
  bottom: -2px;
  width: 22px;
  height: 3px;
}
.landscape .phone-key--volume-up {
  left: 31%;
  top: auto;
  bottom: -2px;
  width: 34px;
  height: 3px;
}
.landscape .phone-key--volume-down {
  left: 38%;
  top: auto;
  bottom: -2px;
  width: 34px;
  height: 3px;
}
.landscape .phone-key--power {
  left: calc(50% - 31px);
  right: auto;
  top: -2px;
  bottom: auto;
  width: 62px;
  height: 3px;
}
