:root {
  --bg: #050708;
  --panel: #0d1114;
  --panel-soft: #14191d;
  --text: #f7f4e8;
  --muted: #cfc8b7;
  --cyan: #00d6df;
  --cyan-dark: #00949c;
  --yellow: #ffc22f;
  --orange: #f08b22;
  --line: rgba(255, 194, 47, 0.35);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  min-height: 100vh;
  color: var(--text);
  background: #000;
  font-family: "Nunito", system-ui, sans-serif;
  letter-spacing: 0.032em;
}

.site-stage {
  position: fixed;
  top: 50%;
  left: calc(50% + 10px);
  width: 1720px;
  height: 1024px;
  overflow: visible;
  transform: translate(-50%, -50%) scale(var(--stage-scale, 1));
  background: #000;
  transform-origin: center center;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 72px;
  padding: 0 34px;
  background: rgba(5, 7, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.brand-name {
  color: var(--yellow);
}

.brand strong {
  color: var(--cyan);
}

.brand-domain {
  color: var(--text);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.8rem);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 0.22rem;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--cyan);
}

.header-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-link {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  padding: 0.28rem;
}

.social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 214, 223, 0.68));
  transition: filter 180ms ease, transform 180ms ease;
}

.social-link:hover img {
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.92))
    drop-shadow(0 0 24px rgba(0, 214, 223, 0.96))
    drop-shadow(0 0 42px rgba(0, 214, 223, 0.62));
  transform: translateY(-3px) scale(1.04);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 0.45rem;
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.button-yellow {
  color: #080806;
  background: var(--yellow);
}

.button-cyan {
  color: #031012;
  background: var(--cyan);
}

.button-projects:hover {
  border-color: var(--cyan);
  color: var(--text);
  background: #000;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  border-color: var(--yellow);
  color: #080806;
  background: var(--yellow);
}

.hero-buttons .button {
  font-size: 1.625rem;
  letter-spacing: 0.07em;
  text-shadow: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: calc(100% - 64px);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 610px 1fr;
  height: 478px;
  align-items: center;
  gap: 0;
  padding: 18px 0 8px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 720px;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.eyebrow {
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin-bottom: 1.25rem;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

h1::first-line {
  color: var(--text);
}

.hero-copy h1 {
  text-shadow: 0.06em 0.06em 0 #000;
}

.text-yellow {
  color: var(--yellow);
}

.text-cyan {
  color: var(--cyan);
}

.hero-text {
  max-width: 600px;
  color: var(--text);
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1.25rem 0 1.8rem;
  list-style: none;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0.038em;
}

.check-list li::before {
  margin-right: 0.5rem;
  color: var(--cyan);
  content: "✓";
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-left: -120px;
  min-height: 450px;
}

.asset-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 12rem;
  border: 1px dashed rgba(0, 214, 223, 0.65);
  border-radius: 0.5rem;
  color: rgba(247, 244, 232, 0.74);
  background:
    linear-gradient(135deg, rgba(0, 214, 223, 0.13), rgba(255, 194, 47, 0.08)),
    rgba(13, 17, 20, 0.74);
  text-align: center;
}

.asset-slot::before {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.25rem 0.45rem;
  border-radius: 0.25rem;
  color: #050708;
  background: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  content: attr(data-asset-needed);
}

.asset-slot span {
  max-width: 18rem;
  padding: 1rem;
}

.asset-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-slot.has-image {
  border-style: solid;
  background: transparent;
}

.asset-slot.has-image::before {
  display: none;
}

.hero-character {
  min-height: 450px;
  border: 0;
  box-shadow: var(--shadow);
}

.hero-character img {
  transform: translate(-112px, 34px) scale(1.14);
  transform-origin: center center;
}

.steam-effect,
.desk-lamp-effect,
.neon-bolt-effect,
.robot-face-effect {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.steam-effect {
  right: 217px;
  bottom: 177px;
  width: 92px;
  height: 120px;
}

.steam-effect span {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 72px;
  border-left: 4px solid rgba(247, 244, 232, 0.52);
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0;
  animation: steam-rise 3.8s ease-in-out infinite;
}

.steam-effect span:nth-child(1) {
  left: 18px;
}

.steam-effect span:nth-child(2) {
  left: 42px;
  height: 86px;
  animation-delay: 1.1s;
}

.steam-effect span:nth-child(3) {
  left: 62px;
  height: 64px;
  animation-delay: 2.1s;
}

.desk-lamp-effect {
  top: 77px;
  left: 150px;
  width: 164px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 208, 79, 0.72) 0%, rgba(255, 194, 47, 0.3) 42%, transparent 74%);
  filter: blur(6px);
  mix-blend-mode: screen;
  opacity: 0.66;
  transform: rotate(-12deg);
  animation: lamp-flicker 5.8s linear infinite;
}

.neon-bolt-effect {
  top: 10px;
  right: 166px;
  width: 92px;
  height: 148px;
  border-radius: 24px;
  background: rgba(0, 214, 223, 0.18);
  box-shadow:
    0 0 22px rgba(0, 214, 223, 0.98),
    0 0 50px rgba(0, 214, 223, 0.6),
    0 0 106px rgba(0, 214, 223, 0.36);
  mix-blend-mode: screen;
  opacity: 0.55;
  clip-path: polygon(38% 0, 92% 0, 62% 38%, 92% 38%, 28% 100%, 42% 52%, 10% 52%);
  animation: neon-flicker 6.5s linear infinite;
}

.robot-face-effect {
  right: 94px;
  bottom: 131px;
  display: grid;
  width: 86px;
  height: 58px;
  place-items: center;
  color: var(--cyan);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 214, 223, 0.9);
  opacity: 0.9;
  animation: robot-blink 8s steps(1) infinite;
}

.robot-face-effect > span {
  transform: rotate(4deg);
}

.robot-eyes {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.robot-mouth {
  display: block;
  margin-top: -14px;
  font-size: 20px;
  line-height: 1;
}

.robot-face-effect.is-sad .robot-eyes,
.robot-face-effect.is-sad .robot-mouth {
  transform: rotate(184deg);
}

.robot-face-effect.is-happy .robot-eyes,
.robot-face-effect.is-happy .robot-mouth {
  color: #35f4ff;
}

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translate(0, 20px) scale(0.8) rotate(8deg);
  }

  20% {
    opacity: 0.58;
  }

  100% {
    opacity: 0;
    transform: translate(-18px, -72px) scale(1.2) rotate(-14deg);
  }
}

@keyframes neon-flicker {
  0%,
  4%,
  7%,
  11%,
  100% {
    opacity: 0.74;
  }

  5%,
  9%,
  43% {
    opacity: 0.19;
  }

  44%,
  47% {
    opacity: 1;
  }

  46%,
  48% {
    opacity: 0.34;
  }
}

@keyframes lamp-flicker {
  0%,
  18%,
  22%,
  39%,
  100% {
    opacity: 0.66;
  }

  20%,
  41% {
    opacity: 0.42;
  }

  21%,
  42%,
  45% {
    opacity: 0.9;
  }
}

@keyframes robot-blink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }

  90%,
  92% {
    transform: scaleY(0.08);
  }
}

.services-band {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 33fr 66fr;
  gap: 14px;
  align-items: stretch;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(10, 14, 16, 0.92);
}

.comic-reader {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 700px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(0, 214, 223, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(255, 194, 47, 0.13), transparent 42%),
    rgba(10, 14, 16, 0.94);
  box-shadow: var(--shadow);
}

.comic-reader-copy {
  align-self: center;
  transform: rotate(-1.4deg);
}

.comic-reader-copy h1,
.comic-reader-copy h2 {
  max-width: 300px;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 54px;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-shadow: 0.06em 0.06em 0 #000;
}

.comic-reader-copy p:not(.eyebrow) {
  max-width: 290px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.3;
}

.comic-reader-stage {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  perspective: 1800px;
}

.comic-book-frame {
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 3 / 2;
  border: 4px solid #080808;
  border-radius: 0.35rem;
  background: #070707;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.56),
    12px 12px 0 rgba(0, 214, 223, 0.26),
    -10px 10px 0 rgba(255, 194, 47, 0.18);
  transform-style: preserve-3d;
}

.comic-reader.is-pageflip-ready .comic-reader-stage {
  perspective: none;
}

.comic-reader.is-pageflip-ready .comic-book-frame {
  overflow: hidden;
  width: min(100%, 780px);
  height: 520px;
  aspect-ratio: auto;
  border: 0;
  background: #070707;
  box-shadow: none;
}

.comic-reader.is-pageflip-ready .comic-book-frame > div,
.comic-reader.is-pageflip-ready .comic-book-frame canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100%;
  max-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background-color: #070707 !important;
  box-shadow: none !important;
}

.comic-reader.is-pageflip-ready .comic-book-frame *,
.comic-reader.is-pageflip-ready .stf__parent,
.comic-reader.is-pageflip-ready .stf__wrapper,
.comic-reader.is-pageflip-ready .stf__block,
.comic-reader.is-pageflip-ready .stf__item,
.comic-reader.is-pageflip-ready [class*="stf"],
.comic-reader.is-pageflip-ready [class*="stw"] {
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background-color: #070707 !important;
  box-shadow: none !important;
}

.comic-reader.is-pageflip-ready canvas,
.comic-reader.is-pageflip-ready canvas[class*="stf"],
.comic-reader.is-pageflip-ready canvas[class*="stw"] {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  outline: 0 !important;
  background: #070707 !important;
  box-shadow: none !important;
}

.comic-reader.is-pageflip-ready .stf__parent,
.comic-reader.is-pageflip-ready .stf__wrapper {
  position: relative !important;
  overflow: hidden !important;
}

.comic-reader.is-pageflip-ready .comic-book-frame::before,
.comic-reader.is-pageflip-ready .comic-book-frame::after {
  display: none;
}

.comic-reader.is-pageflip-ready .stf__item,
.comic-reader.is-pageflip-ready .stf__block,
.comic-reader.is-pageflip-ready .stf__wrapper {
  background: #070707 !important;
}

.comic-reader.is-pageflip-ready .stf__corner,
.comic-reader.is-pageflip-ready [class*="corner"] {
  display: none !important;
  pointer-events: none !important;
}

.comic-reader.is-pageflip-ready .stf__item img,
.comic-reader.is-pageflip-ready .stf__block img,
.comic-reader.is-pageflip-ready .stf__wrapper img,
.comic-reader.is-pageflip-ready canvas + img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0 !important;
  outline: 0 !important;
  background: #070707 !important;
  opacity: 1;
  visibility: visible;
}

.comic-book-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 16;
  width: 74px;
  height: 74px;
  border-radius: 0 0 0.18rem 0;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.38) 48%, rgba(255, 255, 255, 0.16) 54%, rgba(0, 0, 0, 0.4) 55% 100%),
    linear-gradient(135deg, transparent 0 52%, rgba(255, 244, 207, 0.95) 53% 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  filter: drop-shadow(-8px -8px 12px rgba(0, 0, 0, 0.38));
  opacity: 0.78;
  pointer-events: none;
  transform: translate(1px, 1px);
  transition: opacity 180ms ease, transform 180ms ease;
  content: "";
}

.comic-book-frame:hover::after {
  opacity: 1;
  transform: translate(-8px, -8px);
}

.comic-book-frame::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 13px;
  z-index: 18;
  width: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent),
    rgba(0, 0, 0, 0.44);
  pointer-events: none;
  content: "";
}

.comic-page {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0.18rem;
  background: #0b0b0b;
  opacity: 0;
  transform: rotateY(0deg) translateZ(0);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 880ms cubic-bezier(0.16, 0.74, 0.2, 1),
    filter 880ms cubic-bezier(0.16, 0.74, 0.2, 1);
  backface-visibility: hidden;
  pointer-events: none;
}

.comic-page::before,
.comic-page::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
  content: "";
}

.comic-page::before {
  background:
    radial-gradient(circle at 92% 92%, rgba(255, 255, 255, 0.82) 0 4%, rgba(255, 255, 255, 0.28) 5% 10%, transparent 24%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.35) 58%, rgba(0, 0, 0, 0.54) 100%);
  mix-blend-mode: screen;
}

.comic-page::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.34)),
    linear-gradient(135deg, transparent 0 78%, rgba(255, 244, 207, 0.96) 79% 86%, rgba(0, 0, 0, 0.54) 87% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.comic-page.is-current {
  z-index: 8;
  opacity: 1;
  pointer-events: auto;
}

.comic-page.is-leaving-next {
  z-index: 12;
  opacity: 1;
  filter: drop-shadow(-22px 16px 18px rgba(0, 0, 0, 0.44));
  transform: rotateY(-138deg) translateX(-1.5%) skewY(-1.4deg);
}

.comic-page.is-leaving-prev {
  z-index: 12;
  opacity: 1;
  filter: drop-shadow(22px 16px 18px rgba(0, 0, 0, 0.44));
  transform: rotateY(138deg) translateX(1.5%) skewY(1.4deg);
  transform-origin: right center;
}

.comic-page.is-leaving-next::before,
.comic-page.is-leaving-next::after,
.comic-page.is-leaving-prev::before,
.comic-page.is-leaving-prev::after {
  opacity: 1;
}

.comic-page.is-leaving-prev::before {
  background:
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.82) 0 4%, rgba(255, 255, 255, 0.28) 5% 10%, transparent 24%),
    linear-gradient(270deg, transparent 48%, rgba(255, 255, 255, 0.35) 58%, rgba(0, 0, 0, 0.54) 100%);
}

.comic-page.is-leaving-prev::after {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.58), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.34)),
    linear-gradient(45deg, transparent 0 78%, rgba(255, 244, 207, 0.96) 79% 86%, rgba(0, 0, 0, 0.54) 87% 100%);
}

.comic-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comic-turn {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: var(--text);
  background: rgba(5, 7, 8, 0.72);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.comic-turn:hover {
  color: #061012;
  background: var(--cyan);
}

.comic-turn:disabled {
  opacity: 0.36;
  cursor: default;
}

.comic-turn-prev {
  left: 12px;
}

.comic-turn-next {
  right: 12px;
}

.comic-zoom-button {
  position: absolute;
  right: 78px;
  bottom: 14px;
  z-index: 24;
  display: inline-grid;
  min-width: 74px;
  min-height: 36px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.35rem;
  color: #061012;
  background: var(--yellow);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.comic-zoom-button:hover {
  background: var(--cyan);
}

.comic-zoom {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.comic-zoom.is-open {
  opacity: 1;
  pointer-events: auto;
}

.comic-zoom img {
  display: block;
  width: min(96vw, 1500px);
  max-height: 92vh;
  object-fit: contain;
  border: 4px solid #080808;
  border-radius: 0.35rem;
  background: #070707;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
}

.comic-zoom-close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #061012;
  background: var(--cyan);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-teaser {
  display: grid;
  align-content: center;
  min-height: 110px;
  padding: 10px 16px;
  border-right: 1px dashed rgba(255, 194, 47, 0.45);
}

.shop-teaser span,
.shop-teaser strong {
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.shop-teaser span {
  color: var(--yellow);
  font-size: 26px;
}

.shop-teaser strong {
  color: var(--cyan);
  font-size: 44px;
  letter-spacing: 0.03em;
}

.shop-teaser p {
  max-width: 410px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}

.services-carousel {
  min-width: 0;
}

.services-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.services-band h2 {
  display: inline-block;
  margin-bottom: 4px;
  padding: 0.15rem 0.8rem;
  color: #071012;
  background: var(--cyan);
  border-radius: 0.25rem;
  font-size: 28px;
}

.services-controls {
  display: flex;
  gap: 8px;
}

.services-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 214, 223, 0.82);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 214, 223, 0.08);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 214, 223, 0.18);
}

.services-controls button:hover {
  color: #031012;
  background: var(--cyan);
}

.services-grid {
  --service-index: 0;
  position: relative;
  display: flex;
  min-height: 88px;
  overflow: hidden;
}

.services-grid::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 3px;
  background: rgba(10, 14, 16, 0.92);
  pointer-events: none;
  content: "";
}

.services-grid article {
  position: relative;
  display: block;
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding: 4px 16px 6px;
  text-align: center;
  transform: translateX(calc(var(--service-index) * -100%));
  transition: transform 760ms cubic-bezier(0.65, 0, 0.35, 1);
}

.services-grid article[hidden] {
  display: none !important;
}

.services-grid.is-resetting article {
  transition: none;
}

.services-grid article::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 194, 47, 0.62),
    rgba(0, 214, 223, 0.48),
    transparent
  );
  content: "";
}

.service-icon {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cyan);
  font-size: 50px;
  font-weight: 900;
}

.services-grid h3 {
  margin-bottom: 0.2rem;
  font-size: 23px;
  letter-spacing: 0.06em;
}

.services-grid p,
.contact-strip p {
  color: var(--muted);
  line-height: 1.25;
}

.contact-strip {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  overflow: visible;
  height: 184px;
  min-height: 184px;
  padding: 16px 0 0;
}

.contact-quote,
.contact-cta,
.mascot {
  min-height: 150px;
}

.contact-quote,
.contact-cta {
  position: relative;
  padding-right: 34px;
  margin-right: 34px;
}

.contact-cta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-quote::after,
.contact-cta::after {
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 194, 47, 0.62),
    rgba(0, 214, 223, 0.48),
    transparent
  );
  content: "";
}

blockquote {
  position: relative;
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: var(--cyan);
  font-size: 52px;
  line-height: 0.8;
  content: "“";
}

.quote-text {
  position: relative;
  display: block;
  padding: 30px 58px 24px 48px;
}

.quote-text::after {
  position: absolute;
  right: 0;
  bottom: -24px;
  display: block;
  color: var(--cyan);
  font-size: 52px;
  line-height: 0.8;
  content: "”";
}

cite {
  display: block;
  margin-top: 0.1rem;
  margin-left: 48px;
  font-style: normal;
}

.contact-strip h2 {
  margin-bottom: 0.35rem;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.site-credit {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 3;
  color: rgba(247, 244, 232, 0.32);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}

.about-page .site-stage,
.projects-page .site-stage,
.services-page .site-stage,
.contact-page .site-stage {
  overflow: hidden;
}

.about-main {
  height: calc(1024px - 72px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 12px 0 20px;
  scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.projects-main {
  display: grid;
  grid-template-rows: 20% 38% 15% 1fr;
  row-gap: 10px;
  overflow: hidden;
  padding: 10px 0 12px;
}

.projects-hero {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18%;
  gap: 14px;
  align-items: stretch;
  min-height: 0;
  margin-bottom: 0;
}

.projects-hero-panel,
.projects-lab,
.project-process {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(0, 214, 223, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(255, 194, 47, 0.12), transparent 42%),
    rgba(10, 14, 16, 0.94);
  box-shadow: var(--shadow);
}

.projects-hero-copy {
  min-height: 0;
  padding: 0.6% 0 0 0;
  transform: none;
}

.projects-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 0.45%;
  color: var(--yellow);
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: 0.065em;
  text-shadow: 0.06em 0.06em 0 #000;
}

.projects-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.24;
}

.projects-hero-panel {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 6%;
  background:
    linear-gradient(155deg, rgba(255, 194, 47, 0.2), transparent 46%),
    rgba(13, 17, 20, 0.96);
}

.panel-number {
  color: var(--cyan);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 68px;
  line-height: 0.86;
  text-shadow: 0.06em 0.06em 0 #000;
}

.projects-hero-panel strong {
  margin-top: 8px;
  color: var(--yellow);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 27px;
  line-height: 0.95;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.projects-hero-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.22;
}

.projects-lab {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
  margin-bottom: 0;
  padding: 0.7%;
}

.project-card {
  display: grid;
  grid-template-rows: 38% minmax(0, 1fr);
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.45rem;
  background: rgba(5, 7, 8, 0.56);
}

.project-card-finished {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
}

.project-card-finished-header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.project-card-finished-header .project-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 0.35rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 194, 47, 0.24), transparent 48%),
    linear-gradient(135deg, rgba(0, 214, 223, 0.36), rgba(5, 7, 8, 0.9));
  font-size: 34px;
}

.project-card-finished-header p:not(.project-status) {
  margin-bottom: 0;
}

.project-preview {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(0, 214, 223, 0.5);
  border-radius: 0.35rem;
  background: #050708;
  cursor: pointer;
}

.project-carousel {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.project-carousel-track {
  display: flex;
  height: 100%;
  min-height: 0;
  transform: translateX(calc(var(--project-index, 0) * -100%));
  transition: transform 360ms cubic-bezier(0.16, 0.74, 0.2, 1);
}

.project-carousel-controls {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.project-carousel-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #061012;
  background: var(--cyan);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.36);
}

.project-carousel-controls button:hover {
  background: var(--yellow);
}

.project-carousel-empty {
  display: grid;
  height: 100%;
  min-height: 0;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(0, 214, 223, 0.5);
  border-radius: 0.35rem;
  color: var(--muted);
  background: rgba(5, 7, 8, 0.5);
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.project-preview span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.25rem;
  color: #071012;
  background: var(--yellow);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.project-preview:hover img {
  filter: brightness(1.1) saturate(1.08);
  transform: scale(1.025);
}

.project-card-media {
  display: grid;
  min-height: 0;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 194, 47, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(0, 214, 223, 0.36), rgba(5, 7, 8, 0.9));
}

.project-card-media-yellow {
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 214, 223, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 194, 47, 0.42), rgba(5, 7, 8, 0.9));
}

.project-card-media-cyan {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 194, 47, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(0, 214, 223, 0.42), rgba(5, 7, 8, 0.9));
}

.project-card-media-concept {
  background:
    radial-gradient(circle at 50% 45%, rgba(247, 244, 232, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(240, 139, 34, 0.42), rgba(5, 7, 8, 0.9));
}

.project-card-media-advice {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 194, 47, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(247, 244, 232, 0.24), rgba(5, 7, 8, 0.9));
}

.project-icon {
  color: var(--text);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 0 22px rgba(0, 214, 223, 0.72),
    0.06em 0.06em 0 #000;
}

.project-card-copy {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 4%;
}

.project-status {
  display: inline-block;
  width: fit-content;
  margin-bottom: 7px;
  padding: 0.18rem 0.5rem;
  border-radius: 0.25rem;
  color: #071012;
  background: var(--yellow);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 17px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.project-card h2 {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 28px;
  letter-spacing: 0.065em;
  line-height: 0.95;
}

.project-card p:not(.project-status) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.22;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.project-tags span {
  padding: 0.25rem 0.46rem;
  border: 1px solid rgba(0, 214, 223, 0.54);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 214, 223, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 18px;
  width: min(94vw, 1180px);
  max-height: 88vh;
  padding: 18px;
  border: 3px solid rgba(255, 194, 47, 0.82);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(0, 214, 223, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(255, 194, 47, 0.14), transparent 46%),
    #080b0d;
  box-shadow:
    10px 10px 0 rgba(255, 194, 47, 0.32),
    0 28px 72px rgba(0, 0, 0, 0.62);
}

.project-modal-image {
  display: block;
  width: 100%;
  max-height: calc(88vh - 36px);
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 0.35rem;
  background: #050708;
}

.project-modal-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.project-modal-copy .project-status {
  color: #071012;
  background: var(--cyan);
}

.project-modal-copy h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-shadow: 0.06em 0.06em 0 #000;
}

.project-modal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.project-modal-link {
  width: fit-content;
}

.project-modal-link[hidden] {
  display: none;
}

.project-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #061012;
  background: var(--cyan);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.project-process {
  display: grid;
  grid-template-columns: 21.6% minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 0;
  margin-bottom: 0;
  padding: 0.8%;
}

.project-process h2 {
  margin-bottom: 0;
  color: var(--yellow);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.065em;
  text-shadow: 0.06em 0.06em 0 #000;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 0;
  padding: 3%;
  border: 1px dashed rgba(255, 194, 47, 0.42);
  border-radius: 0.4rem;
  background: rgba(5, 7, 8, 0.42);
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.18;
}

.projects-page .contact-strip,
.services-page .contact-strip {
  height: 184px;
  min-height: 184px;
  padding-top: 16px;
}

.projects-page .contact-quote,
.projects-page .contact-cta,
.projects-page .mascot,
.services-page .contact-quote,
.services-page .contact-cta,
.services-page .mascot {
  min-height: 150px;
}

.projects-page blockquote,
.services-page blockquote {
  font-size: 20px;
  line-height: 1.35;
}

.projects-page .quote-text,
.services-page .quote-text {
  padding: 30px 58px 24px 48px;
}

.projects-page .mail-badge,
.services-page .mail-badge {
  width: 92px;
  height: 92px;
  font-size: 48px;
}

.projects-page .contact-strip h2,
.services-page .contact-strip h2 {
  font-size: 2rem;
}

.projects-page .contact-strip p,
.services-page .contact-strip p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.projects-page .mascot,
.services-page .mascot {
  width: 100%;
}

.projects-page .mascot-bubble,
.services-page .mascot-bubble {
  top: 2px;
  right: 134px;
  width: 250px;
  font-size: 16px;
}

.projects-page .footer-socials,
.services-page .footer-socials {
  left: 8%;
  right: auto;
  bottom: 28px;
}

.projects-page .footer-socials .social-link,
.services-page .footer-socials .social-link {
  width: 3.8rem;
  height: 3.8rem;
}

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

.services-lab .project-card h2 {
  font-size: 24px;
}

.contact-main {
  display: grid;
  grid-template-rows: 24% minmax(0, 1fr) 18%;
  row-gap: 12px;
  overflow: hidden;
  padding: 10px 0 12px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22%;
  gap: 14px;
  align-items: stretch;
  min-height: 0;
}

.contact-status,
.contact-workbench,
.contact-bottom,
.contact-method,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(0, 214, 223, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(255, 194, 47, 0.12), transparent 42%),
    rgba(10, 14, 16, 0.94);
  box-shadow: var(--shadow);
}

.contact-status {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 6%;
  background:
    linear-gradient(155deg, rgba(255, 194, 47, 0.2), transparent 46%),
    rgba(13, 17, 20, 0.96);
}

.contact-status strong {
  margin-top: 8px;
  color: var(--yellow);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.contact-status p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.22;
}

.contact-workbench {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: 0.7%;
}

.contact-methods {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 2.4%;
  background: rgba(5, 7, 8, 0.56);
}

.contact-method > div {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 0;
}

.contact-method-primary {
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 194, 47, 0.18), transparent 34%),
    rgba(5, 7, 8, 0.62);
}

.contact-method-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 214, 223, 0.08);
  font-size: 40px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(0, 214, 223, 0.82);
}

.contact-method h2,
.contact-form h2,
.contact-note h2 {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: 0.065em;
}

.contact-method p:not(.project-status),
.contact-form label span,
.contact-note p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.22;
}

.contact-method .button {
  width: fit-content;
  min-height: 32px;
  margin-top: 2px;
  padding: 0.42rem 0.68rem;
  border-color: transparent;
  color: #031012;
  background: var(--cyan);
  font-size: 16px;
}

.contact-method .button:hover {
  border-color: transparent;
  color: #080806;
  background: var(--yellow);
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 0;
  padding: 2.4%;
  background:
    linear-gradient(155deg, rgba(0, 214, 223, 0.18), transparent 42%),
    rgba(5, 7, 8, 0.62);
}

.form-header .eyebrow {
  margin-bottom: 4px;
}

.contact-form label {
  display: grid;
  gap: 5px;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 194, 47, 0.42);
  border-radius: 0.4rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.04em;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 38px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 78px;
  resize: vertical;
  padding: 9px 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 214, 223, 0.14);
}

.contact-form button {
  width: fit-content;
  min-height: 40px;
  margin-top: -2px;
  border: 3px solid transparent;
  color: #080806;
  background: var(--yellow);
  cursor: pointer;
}

.contact-form button:hover {
  border-color: var(--cyan);
  color: var(--text);
  background: #000;
}

.contact-form button:disabled {
  cursor: wait;
  filter: grayscale(0.35);
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.form-status.is-success {
  color: var(--cyan);
}

.form-status.is-error {
  color: var(--yellow);
}

.form-status a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 25%;
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 0.8% 1%;
}

.contact-note h2 {
  color: var(--yellow);
  font-size: 34px;
  text-shadow: 0.06em 0.06em 0 #000;
}

.contact-social-board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contact-social-board .social-link {
  width: 4.4rem;
  height: 4.4rem;
}

.contact-mascot {
  position: relative;
  justify-self: end;
  width: 100%;
  min-height: 150px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.contact-mascot img {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(210px, 100%);
}

.contact-mascot .mascot-bubble {
  top: 8px;
  right: 158px;
  width: 250px;
  font-size: 16px;
}

.mail-badge {
  display: grid;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 214, 223, 0.08);
  font-size: 48px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(0, 214, 223, 0.82);
  box-shadow:
    0 0 24px rgba(255, 194, 47, 0.24),
    inset 0 0 22px rgba(0, 214, 223, 0.12);
}

.mascot {
  position: relative;
  z-index: 60;
  justify-self: end;
  justify-items: end;
  width: 100%;
  margin-right: 0;
  overflow: visible;
  min-height: 150px;
  border: 0;
  box-shadow: none;
}

.mascot > img {
  justify-self: end;
  width: 190px;
  margin-right: 24px;
  object-fit: contain;
}

.footer-socials .social-link img {
  width: 100%;
  height: 100%;
  margin-right: 0;
  object-fit: contain;
}

.footer-socials {
  position: absolute;
  left: 8%;
  right: auto;
  bottom: 28px;
  z-index: 16;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  width: calc((3.8rem * 4) + 12px);
  transform: translateY(0);
}

.footer-socials .site-credit,
.contact-social-board .site-credit {
  position: static;
  flex: 0 0 100%;
  margin-top: 5%;
  text-align: center;
  transform: none;
}

.footer-socials .social-link {
  width: 3.8rem;
  height: 3.8rem;
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.about-page .footer-socials {
  left: 8%;
  right: auto;
  bottom: 28px;
}

.about-page .footer-socials .social-link {
  width: 3.8rem;
  height: 3.8rem;
  font-size: 1.08rem;
}

.social-notice {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.social-notice.is-open {
  opacity: 1;
  pointer-events: auto;
}

.social-notice-card {
  position: relative;
  display: grid;
  width: min(94vw, 840px);
  gap: 1.25rem;
  justify-items: center;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border: 3px solid rgba(255, 194, 47, 0.82);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(0, 214, 223, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(255, 194, 47, 0.14), transparent 46%),
    #080b0d;
  box-shadow:
    10px 10px 0 rgba(255, 194, 47, 0.32),
    0 28px 72px rgba(0, 0, 0, 0.62);
  text-align: center;
  transform: translateY(10px) scale(0.96);
  transition: transform 180ms ease;
}

.social-notice.is-open .social-notice-card {
  transform: translateY(0) scale(1);
}

.social-notice-card h2 {
  margin: 0;
  color: var(--text);
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 0.95;
  text-shadow: 0.06em 0.06em 0 #000;
  text-wrap: balance;
}

.social-notice-image {
  display: block;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  background: #050708;
  object-fit: cover;
  box-shadow:
    8px 8px 0 rgba(0, 214, 223, 0.2),
    0 18px 46px rgba(0, 0, 0, 0.48);
}

.social-notice-card p {
  margin: 0.8rem 0 1.3rem;
  font-weight: 900;
}

.social-notice-action:hover {
  color: #080806;
  background: var(--yellow);
}

.mascot-bubble {
  position: absolute;
  top: -4px;
  right: 162px;
  z-index: 90;
  width: 278px;
  padding: 0.65rem 0.8rem;
  border: 2px solid #15100a;
  border-radius: 1.2rem 1.2rem 0.4rem 1.2rem;
  color: #130f0a;
  background: #f5dfb6;
  font-family: "Bangers", "Barlow Condensed", sans-serif;
  font-size: 17px;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: rotate(3deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mascot-bubble::after {
  position: absolute;
  right: -12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  background: #f5dfb6;
  border-right: 2px solid #15100a;
  border-bottom: 2px solid #15100a;
  transform: rotate(-18deg);
  content: "";
}

.mascot-bubble.is-changing {
  opacity: 0;
  transform: translateY(4px) rotate(3deg) scale(0.96);
}

@media (max-width: 860px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
    background:
      radial-gradient(circle at 78% 18%, rgba(0, 214, 223, 0.18), transparent 16rem),
      #000;
  }

  .site-stage {
    position: static;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    transform: none;
  }

  .about-main {
    height: auto;
    overflow: visible;
    padding: 18px 0 28px;
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: auto auto;
    height: auto;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 36px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-header.menu-open .main-nav {
    align-items: flex-start;
    flex-direction: column;
    font-size: 24px;
  }

  .section-shell {
    width: min(100% - 28px, 720px);
  }

  .hero {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 0 12px;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    transform: none;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-text {
    display: none;
  }

  .check-list {
    display: none;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    margin-top: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    order: 1;
    margin: 0 -14px;
    min-height: 0;
  }

  .hero-character {
    min-height: 360px;
    box-shadow: none;
  }

  .hero-character img {
    height: 430px;
    object-fit: cover;
    object-position: 57% 50%;
    transform: none;
  }

  .steam-effect {
    right: 82px;
    bottom: 118px;
    transform: scale(0.74);
    transform-origin: bottom center;
  }

  .desk-lamp-effect {
    top: 70px;
    left: 72px;
    transform: scale(0.72) rotate(-12deg);
    transform-origin: center;
  }

  .neon-bolt-effect {
    top: 38px;
    right: 92px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .robot-face-effect {
    right: 56px;
    bottom: 86px;
    transform: scale(0.72);
    transform-origin: center;
  }

  .steam-effect,
  .desk-lamp-effect,
  .neon-bolt-effect,
  .robot-face-effect {
    display: none;
  }

  .services-band {
    display: block;
    margin-top: 14px;
    padding: 12px;
  }

  .comic-reader {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 16px;
  }

  .projects-main {
    display: block;
    row-gap: 0;
    overflow: visible;
    padding-top: 18px;
  }

  .contact-main {
    display: block;
    overflow: visible;
    padding-top: 18px;
  }

  .projects-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .projects-hero-copy {
    min-height: 0;
    padding: 22px 18px;
    transform: none;
  }

  .projects-hero-copy h1 {
    max-width: none;
    font-size: 44px;
  }

  .projects-hero-copy p:not(.eyebrow) {
    max-width: none;
    font-size: 17px;
  }

  .projects-hero-panel {
    min-height: 0;
    padding: 20px;
  }

  .panel-number {
    font-size: 70px;
  }

  .projects-lab {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px;
  }

  .contact-workbench {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px;
  }

  .contact-methods {
    grid-template-rows: none;
  }

  .contact-method {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 14px;
  }

  .contact-method-icon {
    width: 62px;
    height: 62px;
    font-size: 34px;
  }

  .contact-method h2,
  .contact-form h2,
  .contact-note h2 {
    font-size: 30px;
  }

  .contact-method .button,
  .contact-form button {
    width: 100%;
  }

  .contact-form {
    padding: 16px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .site-credit {
    position: static;
    justify-self: center;
    margin-top: -6px;
    text-align: center;
    transform: none;
  }

  .contact-social-board {
    flex-wrap: wrap;
  }

  .contact-mascot {
    justify-self: center;
    width: min(100%, 360px);
    min-height: 260px;
    padding-top: 58px;
  }

  .contact-mascot img {
    bottom: 0;
    width: min(260px, 78%);
  }

  .contact-mascot .mascot-bubble {
    top: 0;
    right: 2px;
    width: min(230px, 72vw);
    font-size: 20px;
  }

  .project-card {
    grid-template-rows: auto;
    min-height: 0;
  }

  .project-card-finished {
    gap: 12px;
  }

  .project-card-finished-header {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .project-card-media {
    min-height: 130px;
  }

  .project-icon {
    font-size: 68px;
  }

  .project-card h2 {
    font-size: 32px;
  }

  .project-preview {
    min-height: 180px;
  }

  .project-modal-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .project-modal-image {
    max-height: 52vh;
  }

  .project-process {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .project-process h2 {
    font-size: 36px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .comic-reader-copy {
    transform: none;
  }

  .comic-reader-copy h1,
  .comic-reader-copy h2 {
    max-width: none;
    font-size: 42px;
  }

  .comic-reader-copy p:not(.eyebrow) {
    max-width: none;
    font-size: 17px;
  }

  .comic-book-frame {
    width: min(100%, calc(100vw - 48px), 392px);
    aspect-ratio: 2 / 3;
  }

  .comic-reader.is-pageflip-ready .comic-book-frame {
    width: min(100%, calc(100vw - 48px), 392px);
    height: calc(min(100vw - 48px, 392px) * 1.5);
  }

  .comic-reader.is-pageflip-ready .stf__canvas {
    width: 100% !important;
    height: 100% !important;
    transform: none;
  }

  .comic-reader.is-pageflip-ready .stf__item img,
  .comic-reader.is-pageflip-ready .stf__block img,
  .comic-reader.is-pageflip-ready .stf__wrapper img,
  .comic-reader.is-pageflip-ready canvas + img {
    object-fit: cover;
  }

  .comic-turn {
    width: 46px;
    height: 46px;
    font-size: 42px;
  }

  .comic-turn-prev {
    left: -4px;
  }

  .comic-turn-next {
    right: -4px;
  }

  .comic-zoom-button {
    right: 52px;
    bottom: 8px;
    min-width: 64px;
    min-height: 32px;
    font-size: 18px;
  }

  .shop-teaser {
    min-height: 0;
    margin-bottom: 12px;
    padding: 6px 4px 14px;
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 194, 47, 0.45);
  }

  .shop-teaser strong {
    font-size: 38px;
  }

  .services-band h2 {
    font-size: 32px;
  }

  .services-carousel-header {
    align-items: flex-start;
  }

  .services-controls {
    display: none;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: visible;
  }

  .services-grid article {
    display: grid;
    flex: none;
    grid-template-columns: 54px 1fr;
    gap: 4px 12px;
    padding: 14px 4px;
    border-top: 1px dashed rgba(255, 194, 47, 0.45);
    border-left: 0;
    text-align: left;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-grid article::before,
  .services-grid::before {
    display: none;
  }

  .services-grid article:first-child {
    border-top: 0;
  }

  .service-icon {
    grid-row: span 2;
    margin: 0;
    text-align: center;
  }

  .services-grid h3,
  .services-grid p {
    margin-bottom: 0;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    min-height: 0;
    padding: 20px 0 28px;
  }

  .contact-quote,
  .contact-cta,
  .mascot {
    min-height: 0;
  }

  .contact-quote,
  .contact-cta {
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 194, 47, 0.35);
  }

  .contact-quote::after,
  .contact-cta::after {
    display: none;
  }

  .contact-cta {
    align-items: flex-start;
    gap: 16px;
  }

  .mail-badge {
    width: 70px;
    height: 70px;
    font-size: 38px;
  }

  .contact-strip h2 {
    font-size: 32px;
  }

  .mascot {
    justify-self: center;
    width: min(100%, 360px);
    margin-right: 0;
    padding-top: 58px;
  }

  .footer-socials {
    left: 8px;
    right: auto;
    bottom: 18px;
    gap: 4px;
  }

  .footer-socials .social-link {
    width: min(3.8rem, 18vw);
    height: min(3.8rem, 18vw);
  }

  .about-page .footer-socials {
    left: 28px;
    right: auto;
    bottom: 14px;
  }

  .about-page .footer-socials .social-link {
    width: min(3.8rem, 18vw);
    height: min(3.8rem, 18vw);
  }

  .mascot-bubble {
    top: 0;
    left: auto;
    right: 2px;
    width: min(230px, 72vw);
    font-size: 20px;
    transform: rotate(2deg);
  }

  .mascot-bubble::after {
    right: 22px;
    left: auto;
    bottom: -10px;
    border-right: 2px solid #15100a;
    border-bottom: 2px solid #15100a;
    border-left: 0;
    transform: rotate(45deg);
  }

  .mascot-bubble.is-changing {
    transform: translateY(4px) rotate(2deg) scale(0.96);
  }
}

@media (max-width: 420px) {
  .hero-character img {
    height: 360px;
    object-position: 58% 50%;
  }

  .contact-cta {
    flex-direction: column;
  }

  .mail-badge {
    width: 64px;
    height: 64px;
  }
}

body,
body * {
  letter-spacing: 0.105em;
}
