.presentation-page {
  background: #071d17;
}
.presentation-page #main {
  min-height: 100svh;
}
.show-player {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #071d17;
  color: #f0fff4;
  padding: 26px 3.5vw 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 20px;
}
.show-player:fullscreen {
  width: 100%;
  height: 100%;
}
.show-grid-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(#a9ff4f09 1px, transparent 1px),
    linear-gradient(90deg, #a9ff4f09 1px, transparent 1px),
    radial-gradient(ellipse at 90% 30%, #1d5035, transparent 60%);
  background-size:
    70px 70px,
    70px 70px,
    100% 100%;
}
.show-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #ffffff20;
  padding-bottom: 22px;
}
.show-header-tagline,
.show-exit {
  font-size: 0.8rem;
  color: #bed1c6;
  letter-spacing: 0.06em;
}
.show-exit {
  letter-spacing: 0;
  padding: 8px;
}
.show-exit span {
  margin-left: 12px;
}
.show-stage {
  min-height: 0;
  position: relative;
}
.show-slide {
  height: 100%;
  animation: show-enter 0.65s ease both;
}
.show-slide[hidden] {
  display: none !important;
}
.show-kicker {
  font-size: clamp(0.8rem, 1vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8cbbf;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.show-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  column-gap: 6vw;
  position: relative;
  padding-bottom: 35px;
}
.show-intro h2,
.show-outro h2 {
  font-size: clamp(5rem, 9.4vw, 12rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 500;
  margin: 32px 0;
}
.show-slide h2 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
}
.show-intro p {
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  color: #c2d5c7;
}
.show-intro-system {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vh;
}
.show-flow-mark {
  width: 64%;
  max-height: 32vh;
}
.show-intro-foot {
  position: absolute;
  bottom: 10px;
  left: 0;
  font-size: 0.95rem;
  color: #b8cbbf;
}
.show-pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 30px;
}
.show-node {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid #a9ff4f45;
  border-radius: 10px;
  background: #123329;
  font-size: clamp(0.9rem, 1.05vw, 1.3rem);
  line-height: 1.4;
}
.show-node-index {
  display: block;
  color: var(--lime);
  font-size: 0.8rem;
  margin-bottom: 15px;
  letter-spacing: 0.12em;
}
.show-node:not(:last-child):after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 100%;
  background: linear-gradient(90deg, #a9ff4f28, var(--lime), #a9ff4f28);
  background-size: 200% 100%;
  animation: show-flow 2.8s linear infinite;
  animation-play-state: paused;
}
.show-node:nth-child(2):after {
  animation-delay: -0.9s;
}
.is-playing .show-node:after {
  animation-play-state: running;
}
.show-project {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 4vw;
  align-items: center;
  padding: 18px 0 34px;
}
.show-project-copy {
  min-width: 0;
}
.show-project-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 22px 0 14px;
  text-wrap: balance;
}
.show-tagline {
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 1.7vw, 2.2rem);
  line-height: 1.3;
  color: var(--lime);
  font-style: italic;
}
.show-story {
  margin: 28px 0 25px;
  display: grid;
  gap: 22px;
}
.show-story > div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
}
.show-story dt {
  color: #a9ff4f;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.show-story dd {
  margin: 0;
  color: #dae7dd;
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  line-height: 1.6;
}
.show-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.show-project-meta > span {
  border: 1px solid #ffffff2a;
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 5px 10px;
  color: #b8cbbf;
}
.show-project-meta .show-project-status {
  background: #a9ff4f16;
  color: #def6c6;
  border-color: #a9ff4f35;
}
.show-project-visual {
  min-width: 0;
  height: min(68vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-screen {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  filter: drop-shadow(0 28px 35px #0004);
}
.show-screen-bar {
  background: #edf2ee;
  color: #46584e;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.8rem;
}
.show-screen-bar > span:last-child {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.show-screen-dots {
  display: flex;
  gap: 5px;
}
.show-screen-dots i {
  width: 6px;
  height: 6px;
  border: 1px solid #85988a;
  border-radius: 50%;
}
.show-screen-viewport {
  overflow: hidden;
  flex: 1;
  min-height: 0;
  background: #f4f6f4;
  border-radius: 0 0 12px 12px;
}
.show-screen-viewport img {
  width: 100%;
  height: auto;
  animation: show-pan 22s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.is-playing .show-screen-viewport img {
  animation-play-state: running;
}
.show-screen figcaption {
  font-size: 0.78rem;
  color: #b8cbbf;
  margin-top: 12px;
  line-height: 1.5;
}
.show-screen-phone {
  width: auto;
  max-width: 360px;
  height: 100%;
}
.show-screen-phone .show-screen-viewport {
  background: #292136;
  border: 7px solid #35483e;
  border-top: 0;
}
.show-screen-phone .show-screen-viewport img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  animation: none;
}
.show-screen-phone .show-screen-bar > span:last-child {
  display: none;
}
.show-system {
  width: 100%;
  display: grid;
  gap: 25px;
  justify-items: center;
}
.show-company-mark {
  width: 80%;
  min-height: 190px;
  height: 24vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border-radius: 18px;
  background: #fff;
  color: #10251b;
  box-shadow: 0 25px 70px #0003;
  text-align: center;
}
.show-company-mark img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.show-company-mark > span {
  font-size: clamp(2.3rem, 3.4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.show-company-mark-dark {
  background: #183c2e;
  border: 1px solid #94b79c45;
  color: #f0fff4;
}
.show-system-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: #a3bdad;
}
.show-clients {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1300px;
  margin: auto;
}
.show-clients h2 {
  font-size: clamp(2.7rem, 4.6vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.show-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.show-client-grid .client-tile {
  min-height: 145px;
}
.show-client-grid .client-logo-space {
  height: clamp(75px, 11vh, 130px);
}
.show-clients > p {
  color: #b4cbbd;
  font-size: 1rem;
}
.show-outro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.show-outro h2 {
  font-size: clamp(4rem, 8vw, 10rem);
  margin: 24px 0;
}
.show-outro p {
  font-size: clamp(1.1rem, 1.7vw, 2rem);
  color: #c1d3c7;
}
.show-outro > a {
  display: inline-flex;
  gap: 30px;
  color: var(--lime);
  font-size: 1.1rem;
  margin-top: 25px;
}
.show-outro-url {
  font-size: clamp(1.7rem, 3vw, 4rem);
  letter-spacing: -0.035em;
  margin-top: 24px;
}
.show-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
  color: #98b3a0;
  letter-spacing: 0.09em;
}
.show-bottom > a {
  color: #e5f8e9;
  font-size: 1rem;
  letter-spacing: 0;
}
.show-counter {
  font-variant-numeric: tabular-nums;
  min-width: 74px;
  text-align: right;
}
.show-progress {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  left: 0;
  background: #ffffff13;
}
.show-progress span {
  height: 100%;
  display: block;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.show-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  background: #09241af5;
  padding: 9px;
  border: 1px solid #8da99466;
  border-radius: 12px;
  box-shadow: 0 12px 40px #0005;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  max-width: calc(100% - 32px);
}
.show-controls-hidden .show-controls:not(:focus-within):not(:hover) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.show-controls button,
.show-controls select {
  border: 1px solid #91ad9840;
  border-radius: 6px;
  background: #163a2b;
  color: #eff9ee;
  min-height: 42px;
  padding: 8px 12px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.show-controls button:hover,
.show-controls select:hover {
  border-color: var(--lime);
}
.show-controls .show-play-button {
  color: #0c2819;
  background: var(--lime);
  min-width: 72px;
}
.show-controls select {
  max-width: 240px;
  cursor: pointer;
}
.show-controls option {
  background: #0e2a1f;
  color: #fff;
}
.show-notice:not(.sr-only) {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 145px;
  text-align: center;
  padding: 12px;
  background: #173d2d;
  border: 1px solid #a9ff4f66;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  z-index: 6;
}
.show-noscript {
  position: absolute;
  bottom: 140px;
  left: 20px;
  right: 20px;
  background: #163b2a;
  padding: 20px;
  text-align: center;
}
@keyframes show-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes show-flow {
  to {
    background-position: -200% 0;
  }
}
@keyframes show-pan {
  0%,
  15% {
    transform: translateY(0);
  }
  85%,
  100% {
    transform: translateY(calc(-1 * var(--show-image-overflow, 0px)));
  }
}
@media (min-width: 1500px) and (min-height: 850px) {
  .show-player {
    padding: 36px 4vw 28px;
  }
  .show-story {
    gap: 30px;
    margin: 35px 0;
  }
}
@media (max-height: 720px) and (min-width: 901px) {
  .show-player {
    padding-top: 16px;
    gap: 10px;
  }
  .show-header {
    padding-bottom: 14px;
  }
  .show-project {
    padding: 8px 0;
  }
  .show-story {
    gap: 12px;
    margin: 15px 0;
  }
  .show-story dd {
    font-size: 0.95rem;
  }
  .show-project-copy h2 {
    font-size: 2.7rem;
    margin: 14px 0 10px;
  }
  .show-intro h2 {
    font-size: 6rem;
  }
  .show-company-mark {
    min-height: 130px;
  }
  .show-clients {
    gap: 14px;
  }
  .show-clients h2 {
    font-size: 2.8rem;
  }
  .show-client-grid .client-tile {
    min-height: 100px;
  }
}
@media (max-width: 1000px) {
  .show-header-tagline {
    display: none;
  }
  .show-project {
    gap: 3vw;
  }
  .show-story > div {
    display: block;
  }
  .show-story dt {
    margin-bottom: 7px;
  }
  .show-story dd {
    line-height: 1.45;
  }
  .show-controls select {
    max-width: 180px;
  }
  .show-node {
    padding: 12px;
  }
}
@media (max-width: 700px) {
  .show-player {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding: 18px 20px 100px;
    gap: 22px;
  }
  .show-player:fullscreen {
    overflow-y: auto;
  }
  .show-header {
    gap: 10px;
    padding-bottom: 18px;
  }
  .show-exit {
    font-size: 0.75rem;
  }
  .show-exit span {
    display: none;
  }
  .show-stage {
    min-height: 65svh;
  }
  .show-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 16px 0 50px;
  }
  .show-intro h2 {
    font-size: clamp(4.5rem, 16vw, 7rem);
  }
  .show-intro p {
    font-size: 1.8rem;
  }
  .show-intro-system {
    gap: 30px;
  }
  .show-flow-mark {
    width: 140px;
  }
  .show-pipeline {
    gap: 16px;
  }
  .show-node {
    padding: 12px 10px;
    font-size: 0.82rem;
  }
  .show-node:not(:last-child):after {
    width: 16px;
  }
  .show-intro-foot {
    font-size: 0.8rem;
  }
  .show-project {
    grid-template-columns: 1fr;
    padding: 0 0 20px;
    gap: 28px;
  }
  .show-project-copy h2 {
    font-size: 2.6rem;
    margin-top: 16px;
  }
  .show-story {
    margin: 22px 0;
    gap: 18px;
  }
  .show-story dd {
    font-size: 1rem;
    line-height: 1.55;
  }
  .show-project-visual {
    height: min(57vh, 500px);
  }
  .show-screen figcaption {
    font-size: 0.75rem;
  }
  .show-screen-phone {
    max-width: 260px;
  }
  .show-company-mark {
    min-height: 140px;
    height: 160px;
    width: 95%;
    padding: 20px;
  }
  .show-clients h2 {
    font-size: 2.7rem;
  }
  .show-client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .show-client-grid .client-tile {
    min-height: 105px;
    padding: 12px;
  }
  .show-client-grid .client-logo-space {
    height: 65px;
  }
  .show-outro h2 {
    font-size: 4.2rem;
  }
  .show-outro {
    min-height: 65svh;
  }
  .show-controls {
    position: fixed;
    bottom: 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 24px);
    gap: 6px;
  }
  .show-controls button,
  .show-controls select {
    min-height: 38px;
    padding: 7px 10px;
  }
  .show-controls .show-jump {
    flex: 1;
    min-width: 140px;
  }
  .show-jump select {
    max-width: 100%;
    width: 100%;
  }
  .show-speed {
    display: none;
  }
  .show-bottom > span:first-child {
    display: none;
  }
  .show-progress {
    position: fixed;
    z-index: 6;
  }
  .show-notice:not(.sr-only) {
    position: fixed;
  }
}
@media (prefers-reduced-motion: reduce) {
  .show-slide,
  .show-screen-viewport img,
  .show-node:after {
    animation: none;
  }
  .show-controls {
    transition: none;
  }
}
