@import url("./layout-scaffold.css?v=20260920-14");

:root {
  --ink: #0b0d0e;
  --ink-soft: #141718;
  --paper: #f4ecdf;
  --paper-muted: #c8beb0;
  --coral: #e36d3f;
  --amber: #f2a548;
  --line-dark: rgba(244, 236, 223, 0.18);
  --line-light: rgba(11, 13, 14, 0.2);
  --font-display: "Archivo Black", "Arial Black", "Avenir Next", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --page-gutter: clamp(1.25rem, 3.5vw, 3.25rem);
  color-scheme: dark;
  font-family: var(--font-display);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.wordmark__loop {
  font-family: var(--font-display);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.comp-frame {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 43rem;
  aspect-ratio: auto;
  overflow: clip;
}

.hero {
  isolation: isolate;
  background: var(--ink);
}

.hero__charcoal {
  z-index: -3;
  background-color: var(--ink);
  background-image: url("./assets/plates/hero-charcoal-field.webp");
  background-position: center;
  background-size: cover;
}

.hero__kitchen {
  z-index: -4;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero__kitchen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero__division {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 30%;
  width: 1px;
  background: var(--line-dark);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.site-header__bar {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: center;
  width: 100%;
  height: clamp(4.5rem, 9.9vh, 4.75rem);
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 13, 14, 0.94);
  pointer-events: auto;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  flex-shrink: 0;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding-block: 0.7rem;
  white-space: nowrap;
  text-decoration: none;
}

.wordmark__loop {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.wordmark__loop::before {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.55rem;
  border: 2px solid var(--coral);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
}

.wordmark__food {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.primary-nav a,
.text-link {
  position: relative;
  padding-block: 0.65rem;
  color: var(--paper-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.primary-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a[aria-current="location"] {
  color: var(--paper);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(244, 236, 223, 0.38);
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle i::before {
  transform: translateY(-0.3rem);
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::before {
  transform: rotate(-90deg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(244, 236, 223, 0.48);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.header-cta svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.motion-layer {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-rotate: 0deg;
  --motion-scale: 1;
  transform: translate3d(var(--motion-x), var(--motion-y), 0)
    rotate(var(--motion-rotate)) scale(var(--motion-scale));
  transform-origin: center;
}

.hero__rail {
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.hero__rail img {
  width: 100%;
  height: 46%;
  object-fit: contain;
  object-position: center top;
}

.hero__tickets {
  position: absolute;
  z-index: 4;
  top: 20.7%;
  left: 34%;
  width: 61%;
  height: 25%;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.ticket {
  position: absolute;
  display: grid;
  align-content: start;
  width: clamp(5.4rem, 7vw, 7rem);
  min-height: clamp(6.1rem, 9vw, 8.25rem);
  padding: 0.8rem 0.75rem 1rem;
  border-top: 0.2rem solid var(--coral);
  color: #151311;
  background: #efe4d1;
  font-size: clamp(0.48rem, 0.56vw, 0.62rem);
  line-height: 1.32;
  letter-spacing: 0.01em;
  opacity: 0.62;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 93% 100%, 86% 94%, 79% 100%, 72% 94%, 65% 100%, 58% 94%, 51% 100%, 44% 94%, 37% 100%, 30% 94%, 23% 100%, 16% 94%, 8% 100%, 0 94%);
  transition: opacity 220ms ease;
}

.ticket.is-active {
  opacity: 1;
}

.ticket::before {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  width: 1.25rem;
  height: 0.45rem;
  border: 1px solid #252525;
  background: #4c4d4a;
  content: "";
  transform: translateX(-50%);
}

.ticket__time {
  margin-bottom: 1.1rem;
  color: #6a6258;
  font-variant-numeric: tabular-nums;
}

.ticket strong {
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.05;
}

.ticket > span:last-child {
  color: #766d61;
}

.ticket--capacity {
  top: 0;
  left: 2%;
  --motion-rotate: -3deg;
}

.ticket--flow {
  top: -6%;
  left: 43%;
  --motion-rotate: 2deg;
}

.ticket--return {
  top: 7%;
  right: 1%;
  --motion-rotate: -1deg;
}

.hero__robot {
  z-index: 7;
  display: grid;
  place-items: end start;
  margin: 0;
  padding: 0 0 1.5rem 2.2vw;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  pointer-events: auto;
  touch-action: manipulation;
  transform-origin: 50% 78%;
}

.robot-rig {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: calc(100% - clamp(6rem, 13vh, 6.5rem));
  max-width: calc(100% - 2.2vw);
  aspect-ratio: 1084 / 1451;
  transform-origin: 50% 80%;
  animation: robot-breathe 4.8s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}

.robot-layer,
.robot-torso,
.robot-head {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.robot-layer {
  object-fit: contain;
  object-position: center bottom;
  user-select: none;
}

.robot-layer--body {
  z-index: 1;
  /* The body starts at the collar. Only a narrow neck band overlaps the head. */
  clip-path: inset(41.35% 0 0 0);
}

.robot-torso {
  transform: translate3d(var(--robot-torso-x, 0), var(--robot-scroll-y, 0), 0)
    perspective(50rem)
    rotateX(var(--robot-torso-pitch, 0deg))
    rotateY(var(--robot-torso-yaw, 0deg));
  transform-origin: 50% 61%;
}

.robot-neck-socket {
  position: absolute;
  z-index: 3;
  top: 39.9%;
  left: 46.7%;
  width: 14%;
  height: 4.5%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 56%, #17130f 0 38%, rgba(23, 19, 15, .92) 48%, rgba(23, 19, 15, 0) 73%);
  pointer-events: none;
}

.robot-head {
  z-index: 4;
  /* Head and torso share the same inertial Y offset so the collar never tears. */
  transform: translate3d(0, calc(var(--robot-head-y, 0px) + var(--robot-scroll-y, 0px)), 0)
    perspective(50rem)
    rotateX(var(--robot-head-pitch, 0deg))
    rotateY(var(--robot-head-yaw, 0deg))
    rotateZ(var(--robot-head-roll, 0deg));
  transform-origin: 53.5% 41.35%;
  will-change: transform;
}

.robot-layer--head {
  /* The raster stops on the collar; a dedicated socket hides rotation seams. */
  clip-path: inset(0 0 58.2% 0);
}

.robot-face {
  position: absolute;
  top: 22.7%;
  left: 31.5%;
  width: 37%;
  height: 17.4%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38% 40% 34% 36% / 42% 44% 46% 48%;
  background: #070808;
  box-shadow: inset 0 0 1.2rem rgba(255, 255, 255, 0.04);
}

.robot-eyes {
  position: absolute;
  top: 42%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: 62%;
  height: 21%;
  transform: translate3d(calc(-50% + var(--robot-eye-x, 0px)), calc(-50% + var(--robot-eye-y, 0px)), 0);
}

.robot-eyes i {
  display: block;
  width: 26%;
  height: 100%;
  border: clamp(2px, 0.28vw, 4px) solid #ffe7ac;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 0.25rem rgba(255, 193, 82, 0.62));
  transform-origin: 50% 50%;
  animation: robot-blink 6.4s steps(1, end) infinite;
}

.robot-mouth {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 21%;
  height: 10%;
  border-bottom: clamp(2px, 0.22vw, 4px) solid #ffe7ac;
  border-radius: 0 0 60% 60%;
  filter: drop-shadow(0 0 0.2rem rgba(255, 193, 82, 0.5));
  transform: translateX(-50%);
}

.robot-gesture {
  position: absolute;
  z-index: 5;
  top: 55%;
  right: 4%;
  width: 1.5rem;
  height: 1.5rem;
  opacity: var(--robot-notice, 0);
  transform: translate3d(0, var(--robot-gesture-y, 0), 0)
    rotate(var(--robot-gesture-angle, 0deg));
}

.robot-gesture::before,
.robot-gesture::after {
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  border-radius: 50%;
  content: "";
}

.robot-gesture::after {
  inset: 0.35rem;
}

.hero__robot[data-robot-state="gesture"] .robot-mouth {
  width: 16%;
  height: 14%;
  border: 2px solid #ffe7ac;
  border-top: 0;
}

.hero__robot[data-robot-state="perceive"] .robot-eyes,
.hero__robot[data-robot-state="tilt"] .robot-eyes {
  width: 68%;
}

.hero__robot-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0.25rem;
  left: 20%;
  width: 60%;
  height: 5%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
}

@keyframes robot-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -0.22rem, 0) scale(1.006);
  }
}

@keyframes robot-blink {
  0%, 46%, 49%, 100% {
    transform: scaleY(1);
  }
  47%, 48% {
    transform: scaleY(0.08);
  }
}

.hero__pizza {
  z-index: 9;
  display: block;
  margin: 0;
  pointer-events: none;
  transform-origin: 67% 67%;
}

.hero__pizza img {
  position: absolute;
  z-index: 1;
  right: 2.2vw;
  bottom: 2.25rem;
  width: 76%;
  height: auto;
  max-height: calc(100% - 3.5rem);
  object-fit: contain;
  object-position: right bottom;
}

.hero__pizza-shadow {
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 7%;
  width: 68%;
  height: 14%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.hero__copy {
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.25rem 0 var(--page-gutter);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 clamp(1.1rem, 2vh, 1.5rem);
  color: var(--paper-muted);
  font-size: clamp(0.64rem, 0.72vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow::before {
  width: 1.75rem;
  height: 1px;
  background: var(--coral);
  content: "";
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.65rem, 5.55vw, 5.45rem);
  font-weight: 700;
  letter-spacing: -0.068em;
  line-height: 0.84;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero__lede {
  max-width: 31rem;
  margin: clamp(1.25rem, 2.4vh, 1.8rem) 0 0;
  color: var(--paper-muted);
  font-size: clamp(0.94rem, 1.25vw, 1.12rem);
  font-weight: 400;
  line-height: 1.5;
}

.hero__actions {
  z-index: 14;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.15rem 1rem 0 var(--page-gutter);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.75rem 1rem 0.75rem 1.15rem;
  border: 1px solid var(--coral);
  color: var(--ink);
  background: var(--coral);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.primary-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.primary-cta:hover svg,
.primary-cta:focus-visible svg,
.header-cta:hover svg,
.header-cta:focus-visible svg {
  transform: translateX(0.2rem);
}

.hero__state {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: min(100%, 23rem);
  margin-top: clamp(1.25rem, 2.5vh, 1.75rem);
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-dark);
}

.hero__state-count {
  color: var(--paper);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero__state ol {
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  color: #746e66;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.hero__state button {
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.hero__state button[aria-current="true"],
.hero__state button[aria-current="step"] {
  color: var(--amber);
}

.below-fold-spacer {
  position: relative;
  min-height: 18svh;
  border-top: 1px solid var(--line-light);
  background: #eee2d0;
}

.anchor-target {
  position: absolute;
  top: 0;
}

@media (max-width: 72rem) {
  .primary-nav {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.8vw, 4.6rem);
  }

  .ticket--flow {
    left: 39%;
  }
}

@media (max-width: 53.75rem) {
  .comp-frame {
    min-height: 50rem;
  }

  .site-header__bar {
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    height: 4rem;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.is-open {
    position: fixed;
    top: 4rem;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem var(--page-gutter) 1rem;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(11, 13, 14, 0.98);
  }

  .primary-nav.is-open a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    min-height: 2.75rem;
  }

  .hero__copy {
    top: 12%;
    left: 0;
    width: 52%;
    height: 46%;
  }

  .hero__actions {
    top: 61%;
    left: 0;
    width: 44%;
    height: 25%;
  }

  .hero__robot {
    top: 14%;
    left: 54%;
    width: 42%;
    height: 66%;
  }

  .hero__pizza {
    top: 72%;
    left: 53%;
    width: 47%;
    height: 26%;
  }

  .hero__rail {
    top: 16%;
    left: 38%;
    width: 62%;
    height: 50%;
  }

  .hero__tickets {
    top: 25%;
    left: 44%;
    width: 52%;
  }

  .ticket--flow {
    display: none;
  }
}

@media (max-width: 44rem) {
  :root {
    --page-gutter: clamp(1.15rem, 5vw, 1.65rem);
  }

  .comp-frame {
    height: 100svh;
    min-height: 46rem;
  }

  .hero__charcoal {
    top: 0;
    left: 0;
    width: 100%;
    height: 48%;
  }

  .hero__kitchen {
    top: 43%;
    left: 0;
    width: 100%;
    height: 57%;
  }

  .hero__kitchen img {
    object-position: 64% center;
  }

  .hero__division {
    top: 43%;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 12%;
  }

  .site-header__bar {
    padding-inline: var(--page-gutter);
  }

  .header-cta {
    border-color: rgba(244, 236, 223, 0.35);
    padding-inline: 0.85rem;
  }

  .header-cta svg {
    display: none;
  }

  .hero__copy {
    top: 11%;
    left: 0;
    width: 100%;
    height: 28%;
    padding-inline: var(--page-gutter);
    justify-content: flex-start;
  }

  .eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.58rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 13.5vw, 3.85rem);
    letter-spacing: -0.062em;
    line-height: 0.88;
  }

  .hero__lede {
    max-width: 29rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .hero__actions {
    top: 37%;
    left: 0;
    width: 100%;
    height: 13%;
    padding: 0 var(--page-gutter);
  }

  .hero__cta-row {
    gap: 1rem;
  }

  .primary-cta {
    min-height: 3rem;
    font-size: 0.76rem;
  }

  .text-link {
    font-size: 0.7rem;
  }

  .hero__state {
    display: none;
  }

  .hero__rail {
    top: 48%;
    left: 6%;
    width: 94%;
    height: 22%;
  }

  .hero__rail img {
    height: 62%;
    object-position: center top;
  }

  .hero__tickets {
    top: 51.5%;
    left: 10%;
    width: 84%;
    height: 14%;
  }

  .ticket {
    width: 4.45rem;
    min-height: 5.4rem;
    padding: 0.55rem 0.5rem 0.75rem;
    font-size: 0.42rem;
  }

  .ticket__time {
    margin-bottom: 0.65rem;
  }

  .ticket strong {
    font-size: 0.62rem;
  }

  .ticket--capacity {
    left: 1%;
  }

  .ticket--flow {
    display: grid;
    left: 40%;
  }

  .ticket--return {
    right: 0;
  }

  .hero__robot {
    top: 49%;
    left: 38%;
    width: 55%;
    height: 42%;
  }

  .robot-rig {
    width: auto;
    height: 100%;
    max-width: 100%;
  }

  .hero__pizza {
    top: 77%;
    left: 4%;
    width: 64%;
    height: 21%;
    padding: 0 0 0.75rem;
    place-items: end start;
  }

  .hero__pizza img {
    right: auto;
    bottom: 0.75rem;
    left: 0;
    width: auto;
    height: calc(100% - 0.75rem);
    max-height: none;
    object-position: left bottom;
  }

  .hero__pizza-shadow {
    right: auto;
    left: 5%;
  }

}

@media (max-width: 23rem) {
  .wordmark__food,
  .text-link,
  .ticket--flow {
    display: none;
  }

  .hero__cta-row {
    justify-content: flex-start;
  }

  .hero__robot {
    left: 39%;
    width: 60%;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 0px) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .motion-layer {
    transform: none;
  }

  .robot-rig,
  .robot-eyes i {
    animation: none;
  }
}
